forked from http-party/http-server
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
86 lines (86 loc) · 1.93 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
{
"name": "http-server-with-auth",
"version": "0.10.2",
"description": "A simple zero-configuration command-line http server",
"main": "./lib/http-server-with-auth",
"repository": {
"type": "git",
"url": "git://github.com/Alex-Werner/http-server-with-auth.git"
},
"keywords": [
"cli",
"command"
],
"scripts": {
"start": "node ./bin/http-server-with-auth",
"pretest": "common bin/http-server-with-auth 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": {
"basic-auth": "^1.0.3",
"colors": "1.0.3",
"corser": "~2.0.0",
"ecstatic": "^2.0.0",
"http-proxy": "^1.8.1",
"opener": "~1.4.0",
"optimist": "0.6.x",
"portfinder": "0.4.x",
"secure-compare": "3.0.1",
"union": "~0.4.3"
},
"devDependencies": {
"common-style": "^3.0.0",
"request": "2.49.x",
"vows": "0.7.x"
},
"bugs": {
"url": "https://github.com/Alex-Werner/http-server-with-auth/issues"
},
"license": "MIT",
"preferGlobal": "true",
"bin": {
"http-server-with-auth": "./bin/http-server-with-auth",
"hswa": "./bin/http-server-with-auth"
}
}