forked from http-party/http-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 1.87 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
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "http-server",
"version": "0.7.4",
"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",
"pretest": "stylezero bin/ lib/ test",
"test": "vows --spec --isolate"
},
"contributors": [
{
"name": "Charlie Robbins",
"email": "[email protected]"
},
{
"name": "Marak Squires",
"email": "[email protected]"
},
{
"name": "Charlie McConnell",
"email": "[email protected]"
},
{
"name": "Joshua Holbrook",
"email": "[email protected]"
},
{
"name": "Maciej Małecki",
"email": "[email protected]"
},
{
"name": "Matthew Bergman",
"email": "[email protected]"
},
{
"name": "brad dunbar",
"email": "[email protected]"
},
{
"name": "Dominic Tarr"
},
{
"name": "Travis Person",
"email": "[email protected]"
},
{
"name": "Jinkwon Lee",
"email" : "[email protected]"
}
],
"dependencies": {
"colors": "1.0.3",
"optimist": "0.6.x",
"union": "~0.4.3",
"ecstatic": "~0.5.6",
"portfinder": "0.2.x",
"opener": "~1.4.0",
"http-proxy": "~1.8.1"
},
"devDependencies": {
"vows": "0.7.x",
"request": "2.49.x",
"stylezero": "2.1.1"
},
"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",
"hs" : "./bin/http-server"
}
}