forked from balena-io-examples/balena-nodejs-hello-world
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 782 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 782 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
{
"name": "simple-server-node",
"version": "2.0.0",
"description": "A simple Expressjs Web server on balena",
"main": "server.js",
"private": true,
"scripts": {
"test" : "echo \"Error: no test specified\"",
"start": "node src/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/balena-io-projects/simple-server-node.git"
},
"keywords": [
"webserver",
"nodejs",
"expressjs"
],
"author": "Shaun Mulligan <shaun@balena.io>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/balena-io-projects/simple-server-node/issues"
},
"homepage": "https://github.com/balena-io-projects/simple-server-node#readme",
"dependencies": {
"express": "~4.17.1",
"serve-favicon": "~2.5.0"
}
}