-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.27 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "@wearerobos/text-juicer",
"version": "0.0.8",
"description": "This module extract entities from the given text using Regular Expressions",
"author": "ROBOS.im",
"repository": "https://github.com/wearerobos/text-juicer.git",
"keywords": [
"extractor",
"entities",
"nlp",
"entity",
"cpf",
"cnpj",
"money",
"parser",
"written numbers"
],
"bugs": {
"url": "https://github.com/wearerobos/text-juicer/issues"
},
"contributors": [
"Juliano Penna <[email protected]>",
"Rafael Amorim <[email protected]>",
"André Mazoni <[email protected]>"
],
"main": "./dist/index.js",
"scripts": {
"dev": "backpack dev",
"build": "babel src --out-dir ./dist --source-maps",
"test": "mocha **/tests/**/*.tests.js",
"test-watch": "mocha --watch **/tests/**/*.tests.js",
"prepublish": "npm run build"
},
"license": "MIT",
"dependencies": {
"chrono-node": "^1.3.3",
"chrono-ptbr": "https://github.com/jpenna/chrono/tarball/text-juicer",
"lodash": "^4.17.4",
"numeral": "^2.0.4"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-preset-stage-0": "^6.22.0",
"backpack-core": "^0.2.1",
"chai": "^3.5.0",
"mocha": "^3.2.0",
"nodemon": "^1.11.0"
}
}