-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
102 lines (102 loc) · 2.06 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
101
102
{
"name": "ms-nodebootstrap-example",
"private": true,
"description": "",
"author": "",
"license": "UNLICENSE",
"main": "./server.js",
"repository": {
"type": "git",
"url": ""
},
"engines": {
"node": ">=10.0"
},
"dependencies": {
"app-module-path": "^2.1.0",
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
"config": "^3.3.0",
"db-migrate": "^0.11.11",
"db-migrate-mysql": "^2.1.1",
"duration": "^0.2.2",
"express": "^4.17.1",
"express-validator": "^6.14.2",
"glob": "^8.0.3",
"hbs": "^4.1.0",
"helmet": "^4.4.1",
"kokua": "^1.3.2",
"lodash": "^4.17.15",
"maikai": "^0.8.1",
"metalogger": "^2.2.1",
"morgan": "^1.9.1",
"mysql": "^2.18.1",
"nodebootstrap-server": "^2.0.0",
"promise-mysql": "^5.2.0",
"spieler": "^1.2.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"after": "^0.8.1",
"axios": "^0.21.1",
"chai": "^4.2.0",
"db-migrate": "^0.11.13",
"db-migrate-mysql": "^2.2.0",
"eslint": "^8.21.0",
"eslint-plugin-mocha": "^10.1.0",
"fakepromise": "^1.0.6",
"istanbul": "^0.4.2",
"mocha": "^10.0.0",
"nock": "^13.0.11",
"nodemon": "^2.0.19",
"nyc": "^15.1.0",
"should": "^13.2.3",
"sinon": "^9.0.1",
"supertest": "^6.1.3"
},
"scripts": {
"start": "nodemon -L -e js,coffee,jade,handlebars server.js",
"lint": "eslint lib test",
"pretest": "npm run lint",
"test": "nyc mocha --bail test/ test/**/*-test.js",
"test-cov": "nyc mocha test/ test/**/*-test.js"
},
"mocha": {
"require": [
"should",
"test/support/env"
],
"reporter": "spec",
"check-leaks": true
},
"nyc": {
"check-coverage": true,
"per-file": true,
"lines": [
80,
90
],
"statements": [
55,
90
],
"functions": [
55,
90
],
"branches": [
55,
90
],
"include": [
"lib/**/*.js",
"*.js"
],
"reporter": [
"text-summary",
"lcov"
],
"all": true,
"report-dir": "./coverage"
}
}