forked from cloudhead/node-static
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.05 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
44
45
46
47
48
49
{
"name": "node-static",
"description": "simple, compliant file streaming module for node",
"url": "http://github.com/cloudhead/node-static",
"keywords": [
"http",
"static",
"file",
"server"
],
"author": "Alexis Sellier <[email protected]>",
"contributors": [
"Pablo Cantero <[email protected]>",
"Ionică Bizău <[email protected]>"
],
"repository": {
"type": "git",
"url": "http://github.com/cloudhead/node-static"
},
"main": "./lib/node-static",
"scripts": {
"test": "vows --spec --isolate"
},
"bin": {
"static": "bin/cli.js"
},
"license": "MIT",
"dependencies": {
"optimist": ">=0.3.4",
"colors": ">=0.6.0",
"mime": ">=1.2.9"
},
"devDependencies": {
"request": "latest",
"vows": "latest"
},
"version": "0.7.6",
"engines": {
"node": ">= 0.4.1"
},
"bugs": {
"url": "https://github.com/cloudhead/node-static/issues"
},
"homepage": "https://github.com/cloudhead/node-static",
"directories": {
"example": "examples",
"test": "test"
}
}