forked from axa-group/nlp.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.42 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
50
51
52
53
54
55
56
57
58
59
{
"name": "node-nlp",
"version": "1.0.0",
"description": "Library for NLU (Natural Language Understanding) done in Node.js",
"main": "lib/index.js",
"scripts": {
"commit": "git-cz",
"lint": "eslint .",
"lintfix": "eslint --fix lib/**",
"test": "eslint lib/** && jest --coverage"
},
"author": {
"email": "[email protected]",
"name": "Jesus Seijas"
},
"repository": {
"type": "git",
"url": "git+https://github.com/axa-group/nlp.js.git"
},
"bugs": {
"url": "https://github.com/axa-group/nlp.js/issues"
},
"maintainers": [
{
"email": "[email protected]",
"name": "Jesus Seijas"
}
],
"license": "MIT",
"devDependencies": {
"commitizen": "^2.10.1",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^4.10.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^21.17.0",
"jest": "^23.4.2"
},
"dependencies": {
"escodegen": "^1.10.0",
"esprima": "^4.0.0",
"franc": "^4.0.0",
"natural": "^0.6.1"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"jest": {
"verbose": true,
"testURL": "http://localhost/",
"collectCoverageFrom": [
"lib/**.js",
"!lib/nlp/stemmers/**"
],
"coverageDirectory": "coverage"
}
}