-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
54 lines (54 loc) · 1.3 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
{
"name": "hpagent",
"version": "1.2.0",
"description": "A ready to use http and https agent for working with proxies that keeps connections alive!",
"main": "index.js",
"types": "index.d.ts",
"exports": {
".": {
"require": "./index.js",
"import": "./index.mjs",
"types": "./index.d.ts"
},
"./*": "./*.js"
},
"scripts": {
"test": "standard && NODE_EXTRA_CA_CERTS=test/fixtures/certs_unit_test.pem ava -v test/*.test.js && NODE_EXTRA_CA_CERTS=test/fixtures/certs_unit_test.pem ./test/hang-socket/runner.sh && tsd",
"test-ci": "standard && ava -v test/*.test.js && tsd"
},
"engines": {
"node": ">=14"
},
"repository": {
"type": "git",
"url": "git+https://github.com/delvedor/hpagent.git"
},
"keywords": [
"agent",
"http",
"https",
"secure",
"proxy",
"alive",
"keep-alive"
],
"author": "Tomas Della Vedova",
"license": "MIT",
"bugs": {
"url": "https://github.com/delvedor/hpagent/issues"
},
"homepage": "https://github.com/delvedor/hpagent#readme",
"tsd": {
"directory": "test"
},
"devDependencies": {
"ava": "^4.2.0",
"got": "^11.8.3",
"needle": "^3.1.0",
"node-fetch": "^2.6.7",
"proxy": "^1.0.2",
"simple-get": "^4.0.1",
"standard": "^17.0.0",
"tsd": "^0.24.1"
}
}