forked from hiproxy/hiproxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·100 lines (100 loc) · 2.64 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
{
"name": "@weglot/hiproxy",
"version": "1.0.2",
"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 test/**/**/*.test.js --timeout 10000 && nyc report --reporter=lcov --reporter=html",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"report": "npm test && nyc report --reporter=lcov --reporter=html",
"t": "nyc mocha test/proxy/httpserver.test.js && nyc report --reporter=lcov --reporter=html",
"nt": "cross-env NPM_TEST=true nyc mocha 'test/core/other/*.test.js' --timeout 10000 && nyc report --reporter=lcov --reporter=html",
"ot": "cross-env NPM_TEST=true nyc mocha 'old_test/**/*.test.js' --timeout 10000 && nyc report --reporter=lcov --reporter=html"
},
"repository": "git@github.com:weglot/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": {
"@weglot/op-browser": "^1.0.1",
"colors": "^1.1.2",
"hemsl": "^1.2.6",
"hiproxy-conf-parser": "^1.0.8",
"mustache": "^2.3.0",
"node-forge": "^0.7.1",
"os-homedir": "^1.0.2",
"safe-buffer": "^5.1.1",
"simple-mime": "^0.1.0",
"step-flow": "^1.1.1",
"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",
"set-cookie-parser": "^2.1.1"
},
"files": [
"src",
"ssl",
"bin",
"logo",
"README-zh.md",
"CONTRIBUTING.md",
"CODE_OF_CONDUCT.md"
],
"semistandard": {
"globals": [
"log",
"args",
"it",
"describe",
"beforeEach",
"afterEach",
"before",
"after"
],
"ignore": [
"/test/",
"/old_test/"
]
},
"nyc": {
"exclude": [
"src/helpers/mkdirp.js",
"src/helpers/showImage.js",
"src/helpers/getLocalIP.js",
"src/helpers/dirTool.js",
"src/helpers/checkServerStarted.js",
"src/commands/",
"test"
]
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
}
}