world-x / package.json
hui4's picture
Create package.json
f6ed7cf verified
raw
history blame contribute delete
416 Bytes
{
"name": "node-hello-world-minimal",
"version": "1.0.0",
"description": "Node.js minimal example",
"author": "Steve Martinelli <s.martinelli@gmail.com>",
"main": "app.js",
"license": "Apache-2.0",
"repository": {
"type" : "git",
"url" : "https://github.com/IBM/node-hello-world-minimal.git"
},
"scripts": {
"start": "node app.js"
},
"dependencies": {
"express": "^4.17.1"
}
}