forked from cloudhead/node-static
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (35 loc) · 827 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
30
31
32
33
34
35
{
"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 <self@cloudhead.net>",
"contributors" : [
{
"name": "Pablo Cantero",
"email": "pablo@pablocantero.com"
}
],
"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"
},
"devDependencies" : {
"request": "latest",
"vows": "latest"
},
"version" : "0.6.5",
"engines" : { "node": ">= 0.4.1" }
}