-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
47 lines (47 loc) · 870 Bytes
/
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
{
"name": "debug-http",
"version": "1.1.0",
"description": "Debug HTTP/HTTPS requests in Node.js",
"license": "MIT",
"repository": "floatdrop/debug-http",
"author": {
"name": "Vsevolod Strukchinsky",
"email": "[email protected]",
"url": "github.com/floatdrop"
},
"engines": {
"node": ">=0.12.0"
},
"scripts": {
"test": "xo && ava"
},
"files": [
"index.js"
],
"keywords": [
"debug",
"http",
"https",
"requests"
],
"dependencies": {
"chalk": "^1.1.1",
"humanize-number": "0.0.2",
"monkeypatch": "^1.0.0",
"object-assign": "^4.0.1",
"url-parse-lax": "^1.0.0"
},
"devDependencies": {
"ava": "^0.15.0",
"get-port": "^2.1.0",
"got": "^6.3.0",
"pem": "^1.8.3",
"pify": "^2.3.0",
"xo": "^0.15.0"
},
"xo": {
"ignores": [
"test.js"
]
}
}