-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
41 lines (41 loc) · 1 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
{
"name": "docker-sample",
"version": "1.0.0",
"description": "A sample NodeJS app using Docker",
"main": "lib/modules/hello-world/index.js",
"private": true,
"scripts": {
"start": "rejoice -c config/manifest.json -p lib/modules",
"test": "lab -La code -t 100",
"test-cov-html": "lab -r html -o coverage.html -La code"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cilindrox/node-docker-sample.git"
},
"keywords": [
"docker",
"node",
"sample"
],
"author": "gfestari <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cilindrox/node-docker-sample/issues"
},
"homepage": "https://github.com/cilindrox/node-docker-sample#readme",
"dependencies": {
"boom": "4.x.x",
"good": "7.x.x",
"good-console": "6.x.x",
"good-squeeze": "5.x.x",
"hapi": "16.x.x",
"joi": "10.x.x",
"rejoice": "4.x.x",
"white-out": "2.x.x"
},
"devDependencies": {
"code": "4.x.x",
"lab": "12.x.x"
}
}