-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.02 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
{
"name": "agent-pool",
"version": "1.0.1",
"description": "Agent pool that rotates keepalive agents for traffic switching via DNS",
"main": "index.js",
"scripts": {
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"test": "nyc mocha --exit"
},
"keywords": [
"agent",
"pool",
"agentpool",
"keepalive"
],
"author": "Vignesh Shanmugam <vignesh.shanmugam22@gmail.com> (https://vigneshh.in)",
"repository": {
"type": "git",
"url": "git+https://github.com/vigneshshanmugam/agent-pool.git"
},
"bugs": {
"url": "https://github.com/vigneshshanmugam/agent-pool/issues"
},
"homepage": "https://github.com/vigneshshanmugam/agent-pool#readme",
"license": "MIT",
"engines": {
"node": ">6.0.0"
},
"files": [
"index.js",
"index.d.ts",
"lib"
],
"dependencies": {
"agentkeepalive": "^3.5.1"
},
"devDependencies": {
"codecov": "^3.1.0",
"mocha": "^5.2.0",
"nyc": "^13.0.1",
"sinon": "^6.3.4"
},
"types": "index.d.ts"
}