-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.68 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": "backend-local-forward-proxy",
"version": "1.0.4",
"description": "counterpart to backend-reverse-proxy for exposing localhost backends online",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"bin": {
"local-forward-proxy": "bin/local-forward-proxy.js"
},
"scripts": {
"generate-types": "tsc --declaration --emitDeclarationOnly",
"compile": "tsc --noEmit && babel src --out-dir dist --extensions .ts",
"test": "mocha",
"build": "npm run generate-types && npm test && npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aaronicsubstances/backend-local-forward-proxy.git"
},
"keywords": [
"forward",
"proxy",
"localhost",
"http"
],
"author": "aaronicsubstances",
"license": "MIT",
"bugs": {
"url": "https://github.com/aaronicsubstances/backend-local-forward-proxy/issues"
},
"homepage": "https://github.com/aaronicsubstances/backend-local-forward-proxy#readme",
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-typescript": "^7.15.0",
"@babel/register": "^7.15.3",
"@types/chai": "^4.2.22",
"@types/mocha": "^9.0.0",
"@types/nconf": "^0.10.1",
"@types/node": "^16.11.3",
"@types/npmlog": "^4.1.3",
"@types/uuid": "^8.3.1",
"chai": "^4.3.4",
"mocha": "^8.2.1",
"typescript": "^4.4.4"
},
"dependencies": {
"abort-controller": "^3.0.0",
"dotenv": "^8.2.0",
"nconf": "^0.11.3",
"node-fetch": "^2.6.5",
"npmlog": "^5.0.1",
"socket.io-client": "^4.3.2",
"socket.io-stream": "^0.9.1",
"uuid": "^8.3.2"
}
}