forked from ethan7g/phin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.12 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
{
"name": "agent-phin",
"version": "1.0.4",
"description": "The ultra-lightweight Node.js HTTP client now with http agent support",
"main": "lib/phin.min.js",
"scripts": {
"test": "node ./tests/test.js",
"prepublishOnly": "npm test",
"build": "rollup -c",
"gendocs": "rm -r docs || true && jsdoc -R README.md -d ./docs lib/phin.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pxjohnny/agent-phin"
},
"keywords": [
"http",
"https",
"request",
"fetch",
"ajax",
"url",
"uri"
],
"author": "Johnny Tordgeman",
"license": "MIT",
"bugs": {
"url": "https://github.com/pxjohnny/agent-phin/issues"
},
"homepage": "https://github.com/pxjohnny/agent-phin#readme",
"devDependencies": {
"jsdoc": "^3.5.5",
"rollup": "^1.1.0",
"rollup-plugin-terser": "^4.0.2",
"whew": "^1.1.3"
},
"files": [
"lib/phin.min.js"
],
"engines": {
"node": ">= 8"
},
"dependencies": {
"centra": "^2.4.0"
}
}