forked from axa-group/nlp.js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.61 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
{
"name": "root",
"description": "Library for NLU (Natural Language Understanding) done in Node.js",
"scripts": {
"coveralls": "jest --coverage && cat ./tests/coverage/lcov.info | coveralls",
"postinstall": "lerna bootstrap",
"lint": "eslint .",
"lintfix": "eslint --fix .",
"test": "eslint --fix . && TZ='Europe/London' jest --silent --coverage --maxWorkers=4 ."
},
"author": {
"email": "opensource@axa.com",
"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"
},
"homepage": "https://github.com/axa-group/nlp.js#readme",
"maintainers": [
{
"email": "opensource@axa.com",
"name": "Jesus Seijas"
}
],
"license": "MIT",
"dependencies": {},
"devDependencies": {
"coveralls": "^3.1.0",
"eslint": "^7.22.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^26.0.0",
"eslint-plugin-prettier": "^4.0.0",
"https-proxy-agent": "^5.0.0",
"jest": "^29.3.1",
"lerna": "^6.1.0",
"prettier": "^2.2.1",
"supertest": "^6.1.3"
},
"jest": {
"verbose": true,
"testURL": "http://localhost/",
"collectCoverage": true,
"collectCoverageFrom": [
"**/src/**/**.js",
"!./packages/lang-**/**",
"!./packages/python-compiler/src/python-executer.js",
"!./packages/express-api-server/src/public/**/**"
],
"coverageDirectory": "coverage",
"testEnvironment": "node"
}
}