-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 1.66 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
{
"name": "@cic-digital/node-dao-db2",
"version": "0.1.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --coverage --env=node",
"check": "eslint --ignore-path .eslintignore --quiet \"./**/*.js\""
},
"jest": {
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"collectCoverageFrom": [
"**/*.{js,jsx}",
"!**/node_modules/**",
"!**/coverage/**",
"!**/util/db2class.js",
"!**/testutil/**",
"!**/Test/**",
"!**/example/**",
"!temp.js",
"!database.js",
"!decortar.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/k19810703/node-dao-db2.git"
},
"keywords": [
"node",
"db2"
],
"author": "wuhd <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/k19810703/node-dao-db2/issues"
},
"dependencies": {
"connect-db2": "^0.6.0",
"ibm_db": "^2.5.0",
"joi": "^14.3.1",
"lodash": "^4.17.11",
"log": "^1.4.0",
"moment": "^2.22.2",
"string-format": "^2.0.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"eslint": "^5.13.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-angular": "^4.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.0",
"eslint-plugin-react": "^7.12.4",
"jest": "^24.1.0",
"superagent": "^4.0.0",
"supertest": "^3.3.0"
},
"homepage": "https://github.com/k19810703/node-dao-db2#readme"
}