forked from gajus/global-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.35 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
{
"author": {
"email": "[email protected]",
"name": "Gajus Kuizinas",
"url": "http://gajus.com"
},
"ava": {
"extensions": [
"ts"
],
"files": [
"test/global-agent/**/*"
],
"require": [
"ts-node/register/transpile-only"
]
},
"dependencies": {
"boolean": "^3.1.2",
"es6-error": "^4.1.1",
"globalthis": "^1.0.2",
"matcher": "^4.0.0",
"omit-undefined": "^1.0.1",
"roarr": "^7.0.3",
"semver": "^7.3.5",
"serialize-error": "^8.1.0"
},
"description": "Global HTTP/HTTPS proxy configurable using environment variables.",
"devDependencies": {
"@ava/babel": "^2.0.0",
"@babel/cli": "^7.14.8",
"@babel/core": "^7.14.8",
"@babel/node": "^7.14.7",
"@babel/plugin-transform-flow-strip-types": "^7.14.5",
"@babel/preset-env": "^7.14.8",
"@babel/register": "^7.14.5",
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/anyproxy": "^4.1.2",
"@types/globalthis": "^1.0.1",
"@types/request": "^2.48.6",
"@types/semver": "^7.3.8",
"@types/sinon": "^10.0.2",
"anyproxy": "^4.1.3",
"ava": "^3.15.0",
"axios": "^0.21.1",
"babel-plugin-istanbul": "^6.0.0",
"babel-plugin-transform-export-default-name": "^2.1.0",
"coveralls": "^3.1.1",
"del-cli": "^4.0.1",
"eslint": "^7.31.0",
"eslint-config-canonical": "^26.2.3",
"get-port": "^5.1.1",
"got": "^11.8.2",
"husky": "^7.0.1",
"nyc": "^15.1.0",
"pem": "^1.14.4",
"request": "^2.88.2",
"semantic-release": "^17.4.4",
"sinon": "^11.1.2",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"engines": {
"node": ">=10.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run test && npm run build"
}
},
"keywords": [
"http",
"global",
"proxy",
"agent"
],
"license": "BSD-3-Clause",
"main": "./dist/index.js",
"name": "epsitec-global-agent",
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"all": true
},
"repository": {
"type": "git",
"url": "https://github.com/gajus/global-agent"
},
"scripts": {
"build": "del-cli ./dist && tsc",
"lint": "eslint ./src ./test && tsc",
"test": "ava --verbose --serial",
"create-readme": "gitdown ./.README/README.md --output-file ./README.md"
},
"typings": "./dist/src/index.d.ts",
"version": "0.0.1"
}