-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
53 lines (53 loc) · 1.47 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
{
"name": "node-http-server",
"version": "8.1.6",
"description": "A very simple and fast http server for node, bash, and spawnable from C, Python etc. It is lightweight and great for embedded solutions as well as everyday development or public facing apps.",
"main": "server/Server.js",
"directories": {
"example": "example",
"doc": "docs",
"lib": "server"
},
"engines": {
"node": ">=6.5.0"
},
"bin": {
"node-http-server": "bin/nhs.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"basic": "node ./example/basic/basicApp.js",
"https": "node ./example/basic/https-ONLY-basicApp.js",
"both": "node ./example/basic/https-basicApp.js",
"template": "node ./example/advanced/basicTemplate.js",
"cluster": "node ./example/basic/cluster-basicApp.js",
"docs": "docco-plus ./README.md ./example/* ./example/**/* ./server/* ./bin/* ./local-certs/* "
},
"repository": {
"type": "git",
"url": "https://github.com/RIAEvangelist/node-http-server.git"
},
"keywords": [
"http",
"server",
"node",
"embedded",
"fast",
"bash",
"c",
"python",
"light",
"lightweight"
],
"author": "Brandon Nozaki Miller",
"license": "MIT",
"bugs": {
"url": "https://github.com/RIAEvangelist/node-http-server/issues"
},
"homepage": "https://github.com/RIAEvangelist/node-http-server",
"devDependencies": {
"docco-plus": "2.0.2",
"request": "*"
},
"dependencies": {}
}