-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.86 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
{
"name": "http-public",
"version": "0.0.2",
"description": "Route HTTP traffic from the public internet.",
"bin": {
"http-public": "dist/bin/index.js",
"proxy": "dist/bin/index.js"
},
"engines": {
"node": ">=14"
},
"scripts": {
"demo": "ts-node src/bin/",
"prebuild": "rimraf dist/",
"build": "tsc -p tsconfig.prod.json",
"test": "mocha -r ts-node/register -t 500 src/*.test.ts",
"tdd": "npm -s t -- -R min -w --watch-files src/ --watch-ignore src/bin/",
"cover": "c8 -r text -r html -r lcov npm -s t",
"prepack": "npm run build",
"prepare": "husky install"
},
"keywords": [
"tunnel",
"local",
"proxy"
],
"files": [
"dist/"
],
"author": "Tim Davis <[email protected]>",
"license": "MIT",
"dependencies": {
"commander": "^8.3.0"
},
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/mitm": "^1.3.4",
"@types/mocha": "^9.1.1",
"@types/node": "^16.11.36",
"@types/sinon": "^10.0.11",
"@types/ws": "^7.4.7",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"c8": "^7.11.3",
"chai": "^4.3.6",
"eslint": "^7.32.0",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"husky": "^7.0.4",
"is-ci": "^3.0.1",
"lint-staged": "^11.2.6",
"mitm": "^1.7.2",
"mocha": "^9.2.2",
"rimraf": "^3.0.2",
"sinon": "^11.1.2",
"ts-node": "^10.8.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.7.2",
"ws": "^8.7.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thebearingedge/http-public.git"
},
"bugs": {
"url": "https://github.com/thebearingedge/http-public/issues"
},
"homepage": "https://github.com/thebearingedge/http-public#readme"
}