forked from http-party/http-server
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
113 lines (113 loc) · 2.27 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "hs2",
"version": "1.1.0",
"description": "http server with auto generated SSL",
"main": "./lib/http-server",
"repository": {
"type": "git",
"url": "git@github.com:AJLoveChina/hs2.git"
},
"keywords": [
"cli",
"command",
"http",
"server",
"https",
"auto-generated-ssl"
],
"scripts": {
"start": "node ./bin/http-server",
"pretest": "common bin/http-server lib/ test",
"test": "vows --spec --isolate"
},
"files": [
"lib",
"bin"
],
"engines": {
"node": ">=6"
},
"contributors": [
{
"name": "Charlie Robbins",
"email": "charlie.robbins@gmail.com"
},
{
"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"
},
{
"name": "Jinkwon Lee",
"email": "master@bdyne.net"
},
{
"name": "BigBlueHat",
"email": "byoung@bigbluehat.com"
},
{
"name": "Daniel Dalton",
"email": "daltond2@hawkmail.newpaltz.edu"
},
{
"name": "Jade Michael Thornton",
"email": "jade@jmthornton.net"
},
{
"name": "AJLoveChina",
"url": "https://github.com/AJLoveChina"
}
],
"dependencies": {
"basic-auth": "^1.0.3",
"colors": "^1.3.3",
"corser": "^2.0.1",
"ecstatic": "^3.3.2",
"http-proxy": "^1.17.0",
"opener": "^1.5.1",
"optimist": "~0.6.1",
"portfinder": "^1.0.20",
"secure-compare": "3.0.1",
"selfsigned": "^1.10.7",
"union": "~0.5.0"
},
"devDependencies": {
"common-style": "^3.0.0",
"request": "^2.88.0",
"vows": "~0.8.3"
},
"bugs": {
"url": "https://github.com/AJLoveChina/hs2/issues"
},
"license": "MIT",
"preferGlobal": true,
"bin": {
"hs2": "./bin/http-server"
}
}