forked from http-party/http-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.6 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "http-server",
"version": "0.5.3",
"author": "Nodejitsu <support@nodejitsu.com>",
"description": "a simple zero-configuration command-line http server",
"main": "./lib/http-server",
"repository": {
"type": "git",
"url": "git://github.com/nodeapps/http-server.git"
},
"keywords": [
"cli",
"command"
],
"scripts": {
"start": "node ./bin/http-server",
"test": "vows --spec --isolate"
},
"contributors": [
{
"name": "Marak Squires",
"email": "marak.squires@gmail.com"
},
{
"name": "Charlie McConnell",
"email": "charlie@charlieistheman.com"
},
{
"name": "Joshua Holbrook",
"email": "josh.holbrook@gmail.com"
},
{
"name": "Maciej Małecki",
"email": "maciej.malecki@notimplemented.org"
},
{
"name": "Matthew Bergman",
"email": "mzbphoto@gmail.com"
},
{
"name": "brad dunbar",
"email": "dunbarb2@gmail.com"
},
{
"name": "Dominic Tarr"
},
{
"name": "Travis Person",
"email": "travis.person@gmail.com"
}
],
"dependencies": {
"colors": "*",
"optimist": "0.2.x",
"union": "0.1.x",
"ecstatic": "0.1.x",
"portfinder": "~0.2.1"
},
"devDependencies": {
"vows": "0.6.x",
"request": "2.9.x"
},
"bugs": {
"url": "https://github.com/nodeapps/http-server/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/nodeapps/http-server/raw/master/LICENSE"
}
],
"analyze": false,
"preferGlobal": "true",
"bin": {
"http-server": "./bin/http-server"
}
}