Create package.json
Browse files- package.json +18 -0
package.json
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"name": "node-hello-world-minimal",
|
3 |
+
"version": "1.0.0",
|
4 |
+
"description": "Node.js minimal example",
|
5 |
+
"author": "Steve Martinelli <s.martinelli@gmail.com>",
|
6 |
+
"main": "app.js",
|
7 |
+
"license": "Apache-2.0",
|
8 |
+
"repository": {
|
9 |
+
"type" : "git",
|
10 |
+
"url" : "https://github.com/IBM/node-hello-world-minimal.git"
|
11 |
+
},
|
12 |
+
"scripts": {
|
13 |
+
"start": "node app.js"
|
14 |
+
},
|
15 |
+
"dependencies": {
|
16 |
+
"express": "^4.17.1"
|
17 |
+
}
|
18 |
+
}
|