-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 748 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 748 Bytes
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
{
"name": "node-global-proxy",
"version": "1.0.0",
"description": "A global proxy for Node.JS with friendly API",
"main": "lib/index.js",
"scripts": {
"build": "tsc -p .",
"test": "mocha 'test/**/*.ts' --require ts-node/register"
},
"author": "wwwzbwcom",
"types": "lib/index.d.ts",
"license": "MIT",
"dependencies": {
"global-agent": "^2.1.12",
"global-tunnel-ng": "^2.7.1"
},
"files": [
"dist/*.d.ts"
],
"devDependencies": {
"@types/chai": "^4.2.15",
"@types/global-agent": "^2.1.0",
"@types/global-tunnel-ng": "^2.1.0",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.28",
"chai": "^4.3.0",
"mocha": "^8.2.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.5"
}
}