forked from hiproxy/hiproxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·87 lines (87 loc) · 2.03 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
{
"name": "hiproxy",
"version": "1.2.9",
"description": "hiproxy - lightweight and powerful proxy tool for front-end developer based on Node.js.",
"main": "src/index.js",
"bin": {
"hiproxy": "bin/cli.js",
"hip": "bin/cli.js"
},
"scripts": {
"doc": "jsdoc2md src/*.js src/listeners/*.js src/listeners/request/*.js",
"pretest": "node scripts/pretest.js",
"test": "cross-env NPM_TEST=true && nyc mocha test/**/*.test.js --timeout 10000",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"report": "npm test && nyc report --reporter=lcov --reporter=html",
"t": "nyc mocha test/tool/*.test.js && nyc report --reporter=lcov --reporter=html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hiproxy/hiproxy.git"
},
"keywords": [
"nodejs",
"proxy",
"nginx",
"reverse-proxy",
"http-proxy",
"https-server",
"proxy-client",
"proxy-server",
"httpsport"
],
"author": "zdying",
"license": "MIT",
"bugs": {
"url": "https://github.com/hiproxy/hiproxy/issues"
},
"homepage": "http://hiproxy.org",
"dependencies": {
"colors": "^1.1.2",
"hemsl": "^1.2.6",
"hiproxy-conf-parser": "^1.0.3",
"mustache": "^2.3.0",
"node-forge": "^0.7.1",
"op-browser": "^1.0.4",
"os-homedir": "^1.0.2",
"simple-mime": "^0.1.0",
"step-flow": "^1.0.3",
"url-pattern": "^1.0.3"
},
"devDependencies": {
"codecov": "^2.1.0",
"cross-env": "^5.1.1",
"ghooks": "^2.0.0",
"mocha": "^3.2.0",
"nyc": "^10.3.2",
"request": "^2.79.0",
"semistandard": "^10.0.0"
},
"config": {
"ghooks": {
"pre-commit": "./node_modules/.bin/semistandard",
"pre-push": "npm test"
}
},
"files": [
"src",
"ssl",
"bin",
"logo",
"README-zh.md",
"CONTRIBUTING.md",
"CODE_OF_CONDUCT.md"
],
"semistandard": {
"globals": [
"log",
"args",
"it",
"describe",
"beforeEach",
"afterEach",
"before",
"after"
]
}
}