forked from jeremyjalal/matelots-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.13 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.13 KB
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
{
"name": "webservices",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"author": "Allaoua Benchikh",
"scripts": {
"start": "node index.js",
"watch": "nodemon index.js",
"test": "jest"
},
"dependencies": {
"app-root-path": "^2.1.0",
"body-parser": "^1.18.2",
"boom": "^7.2.0",
"compression": "^1.7.2",
"cors": "^2.8.4",
"express": "^4.16.3",
"helmet": "^3.12.0",
"influx": "^5.0.7",
"lodash": "^4.17.10",
"morgan": "^1.9.0",
"multer": "^1.3.0",
"mysql": "^2.15.0",
"winston": "^3.0.0",
"winston-daily-rotate-file": "^3.2.3"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-plugin-jest": "^21.18.0",
"jest": "^22.4.4",
"nodemon": "^1.17.5"
},
"jest": {
"verbose": true,
"collectCoverage": true,
"collectCoverageFrom": [
"**/*.{js,jsx}",
"!**/node_modules/**",
"!**/vendor/**",
"!server/components/utils/mysql/**",
"!coverage/**"
],
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 80,
"lines": 80,
"statements": -10
}
}
}
}