forked from spadin/simple-express-static-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 746 Bytes
/
package.json
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
{
"name": "simple-express-static-server",
"version": "0.0.1",
"description": "A very simple static file server.",
"main": "server.js",
"scripts": {
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git://github.com/spadin/simple-express-static-server.git"
},
"author": "Sandro Padin",
"contributors" : [ "Luca Capra" ],
"license": "ISC",
"bugs": {
"url": "https://github.com/spadin/simple-express-static-server/issues"
},
"homepage": "https://github.com/spadin/simple-express-static-server",
"dependencies": {
"express": "^4.1.2",
"body-parser": "^1.1.2",
"errorhandler": "^1.0.1",
"method-override": "^1.0.0"
},
"bin": {
"simple-server": "./start.js"
}
}