-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "autostatic-server",
"version": "1.1.0",
"description": "Automatic server for static files; serve instantly any folder for dev/working purposes (not for production!)",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"autostatic": "./bin/autostatic"
},
"repository": {
"type": "git",
"url": "https://github.com/rbecheras/node-autostatic-server.git"
},
"preferGlobal": true,
"keywords": [
"node.js",
"static",
"server",
"open",
"source",
"dev",
"tool"
],
"author": {
"name": "Rémi Becheras",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/rbecheras/node-autostatic-server/issues"
},
"homepage": "https://github.com/rbecheras/node-autostatic-server#readme",
"dependencies": {
"colors": "^1.1.2",
"commander": "^2.8.1",
"cors": "^2.7.1",
"express": "^4.13.3",
"jade": "^1.11.0",
"open": "0.0.5"
}
}