-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 792 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 792 Bytes
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
{
"name": "docker-node",
"author": "Alvaro Reguly",
"version": "1.0.0",
"description": "Get started with node.js and Docker",
"private": true,
"main": "index.js",
"engines": {
"node": ">=4.4.0",
"npm": "^2.0.0"
},
"config" : { "port" : "3000" },
"scripts": {
"prestart": "npm install",
"start": "node index.js",
"test": "curl -i http://localhost:$npm_package_config_port/npmtest?port=$npm_package_config_port"
},
"dependencies": {
"express": "latest"
},
"repository": {
"type": "git",
"url": "https://github.com/alvarow/docker-node"
},
"keywords": [
"docker",
"node",
"node.js"
],
"bugs": {
"url": "https://github.com/alvarow/docker-node/issues"
},
"homepage": "https://github.com/alvarow/docker-node"
}