-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·83 lines (83 loc) · 1.88 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
{
"name": "http-server-basicauth-ssl",
"version": "1.0.1",
"author": "Waterzo [email protected]",
"description": "a simple zero-configuration command-line http server securised with https & basicauth",
"main": "./lib/http-server-basicauth-ssl.js",
"repository": {
"type": "git",
"url": "git://github.com/rasata/http-server-basicauth-ssl.git"
},
"keywords": [
"cli",
"command"
],
"scripts": {
"start": "node ./bin/http-server-basicauth-ssl",
"test": "vows --spec --isolate"
},
"contributors": [
{
"name": "Zo Rasatavohary",
"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]"
}
],
"dependencies": {
"colors": "0.6.x",
"optimist": "0.5.x",
"union": "0.3.x",
"ecstatic": "~>2.0.0",
"portfinder": "0.2.x",
"opener": "~1.3.0",
"basic-auth-parser": "0.0.2"
},
"devDependencies": {
"vows": "0.7.x",
"request": "2.21.x"
},
"bugs": {
"url": "https://github.com/rasata/http-server-basicauth-ssl/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/rasata/http-server-basicauth-ssl/raw/master/LICENSE"
}
],
"analyze": false,
"preferGlobal": "true",
"bin": {
"http-server-basicauth-ssl": "./bin/http-server-basicauth-ssl"
}
}