-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 976 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 976 Bytes
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
{
"name": "rulesEngine",
"version": "1.0.0",
"description": "",
"main": "lib/index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"start": "node index.js",
"lint": "node ./node_modules/eslint/bin/eslint ./lib/index.js",
"doc": "node ./node_modules/.bin/jsdoc -c .jsdocrc ./lib/index.js ./README.md",
"test": "jest"
},
"jest": {
"testMatch": [
"**/?(*.)+(test).[jt]s?(x)"
],
"collectCoverage": true,
"coverageDirectory": "__tests__/coverage/reports",
"collectCoverageFrom": [
"**/lib/*.{js,jsx}",
"!**/node_modules/**",
"!**/vendor/**"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.19.2",
"chalk": "^3.0.0",
"ldapjs": "^1.0.2",
"rools": "^2.2.7"
},
"devDependencies": {
"benchmark": "^2.1.4",
"eslint": "^6.8.0",
"faker": "^4.1.0",
"jest": "^25.1.0",
"jsdoc": "^3.6.3",
"pino": "^5.16.0"
}
}