Skip to content

Commit 1f4facf

Browse files
author
Tobias Fuhrimann
committed
change to correct json
1 parent 4bd3a5f commit 1f4facf

File tree

1 file changed

+26
-8
lines changed

1 file changed

+26
-8
lines changed

dependencies.html.md.erb

+26-8
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,36 @@ The demo app you deployed already has a `package.json`, and it looks something l
1212
```json
1313
{
1414
"name": "cf-sample-app-node",
15-
16-
...
17-
15+
"description": "A sample Node.js application to run on Cloud Foundry out of the box",
16+
"keywords": [
17+
"cloud-foundry"
18+
],
19+
"version": "0.0.0",
20+
"private": true,
21+
"author": "Tobias Fuhrimann <tobias[email protected]>",
22+
"license": "ISC",
23+
"scripts": {
24+
"start": "node ./bin/www"
25+
},
1826
"dependencies": {
19-
...
27+
"body-parser": "~1.15.0",
28+
"cookie-parser": "~1.4.1",
29+
"debug": "~2.2.0",
30+
"express": "~4.13.4",
31+
"morgan": "~1.7.0",
32+
"pug": "^2.0.0-alpha3",
33+
"serve-favicon": "~2.3.0"
2034
},
21-
22-
...
23-
2435
"engines": {
25-
"node": ...
36+
"node": ">=4.4.2"
37+
},
38+
"repository": {
39+
"type": "git",
40+
"url": "https://github.com/swisscom/cf-sample-app-node.git"
2641
},
42+
"bugs": {
43+
"url": "https://github.com/swisscom/cf-sample-app-node/issues"
44+
}
2745
}
2846
```
2947

0 commit comments

Comments
 (0)