-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
61 lines (61 loc) · 1.25 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
{
"name": "startserver",
"version": "2.0.1",
"description": "Yet another http server",
"keywords": [
"server",
"http",
"dev"
],
"main": "index.js",
"bin": {
"ss": "./bin/ss-2.js",
"startserver": "./bin/ss-2.js"
},
"files": [
"index.js",
"bin/*",
"lib/**/*.js",
"lib/**/*.tpl"
],
"repository": {
"type": "git",
"url": "git://github.com/xudafeng/startserver.git"
},
"preferGlobal": true,
"dependencies": {
"co-request": "~0.2.0",
"colorx": "~0.0.5",
"commander": "^12.0.0",
"detect-port": "^1.2.0",
"foc": "~0.1.6",
"highlight.js": "~8.3.0",
"ipv4": "^1.0.4",
"logx": "~0.0.4",
"marked": "~0.3.3",
"microtemplate": "~0.1.2",
"open": "^8.4.2",
"ws": "^1.1.1"
},
"devDependencies": {
"co-mocha": "^1.1.3",
"command-line-test": "^1.0.3",
"eslint": "~0.24.0",
"git-contributor": "1",
"mocha": "*",
"nyc": "^11.6.0",
"pre-commit": "^1.1.3",
"should": "*",
"should-http": "~0.0.2"
},
"scripts": {
"test": "nyc --reporter=lcov --reporter=text mocha",
"lint": "eslint .",
"contributor": "git-contributor"
},
"precommit": [
"lint"
],
"homepage": "http://startserver.github.io",
"license": "MIT"
}