-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.02 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
{
"name": "nodebootstrap-cli-example",
"private": true,
"description": "",
"author": "",
"license": "UNLICENSE",
"main": "./application.js",
"repository": {
"type": "git",
"url": ""
},
"engines": {
"node": ">=6.1"
},
"bin": {
"nodebootstrap-cli-example": "./nodebootstrap-cli-example"
},
"dependencies": {
"app-module-path": "^2.1.0",
"axios": "^0.21.1",
"bluebird": "^3.5.0",
"config": "*",
"glob": "^7.0.0",
"lodash": "^4.3.0",
"metalogger": "*",
"morgan": "^1.8.1",
"uuid": "^3.0.1",
"yaml": "*",
"yargs": "^16.2.0"
},
"devDependencies": {
"after": "^0.8.1",
"chai": "^3.5.0",
"istanbul": "^0.4.2",
"jshint": "^2.5.x",
"mocha": "^8.3.2",
"nock": "^9.0.0",
"should": "^11.0.0",
"sinon": "^2.1.0",
"supertest": "^3.0.0"
},
"scripts": {
"test": "mocha --bail test/ test/unit/",
"test-cov": "node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- --reporter dot test/ test/acceptance/"
}
}