forked from axa-group/nlp.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.38 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "node-nlp",
"version": "2.3.0",
"description": "Library for NLU (Natural Language Understanding) done in Node.js",
"main": "lib/index.js",
"scripts": {
"commit": "git-cz",
"coveralls": "jest --coverage && cat ./tests/coverage/lcov.info | coveralls",
"lint": "eslint .",
"lintfix": "eslint --fix lib/**",
"precommit": "lint-staged",
"test": "eslint lib/** && jest --coverage --maxWorkers=4",
"jsdoc": "jsdoc -r lib -d docs/static -R README.md"
},
"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": "^3.0.4",
"coveralls": "^3.0.2",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.8.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^22.0.0",
"eslint-plugin-prettier": "^3.0.0",
"husky": "^1.1.0",
"jest": "^23.5.0",
"jsdoc": "^3.5.5",
"lint-staged": "^8.0.0",
"merge": "^1.2.1",
"prettier": "^1.14.3"
},
"dependencies": {
"@microsoft/recognizers-text-suite": "1.1.3",
"brain.js": "^1.4.7",
"escodegen": "^1.10.0",
"esprima": "^4.0.0",
"franc": "^4.0.0",
"handlebars": "^4.0.12",
"microjob": "^0.4.0",
"novel-segment": "^2.0.42",
"xlsx": "^0.14.0"
},
"keywords": [
"natural language processing",
"artifical intelligence",
"natural language understanding",
"natural language generation",
"NLP",
"NLU",
"NLG",
"sentiment analysis",
"classifier",
"logistic regression",
"Natural",
"entity extraction",
"named entity recognition",
"chatbot",
"bot"
],
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"jest": {
"verbose": true,
"testURL": "http://localhost/",
"collectCoverageFrom": [
"lib/**.js",
"!lib/nlp/stemmers/**"
],
"coverageDirectory": "coverage",
"testEnvironment": "node"
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix",
"git add"
]
}
}