-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
37 lines (37 loc) · 919 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
{
"name" : "request-debug",
"author" : "James Nylen <[email protected]>",
"description" : "Library to assist with debugging HTTP(s) requests made by the request module.",
"version" : "0.2.0",
"repository" : {
"type" : "git",
"url" : "https://github.com/request/request-debug"
},
"bugs" : {
"url" : "https://github.com/request/request-debug/issues"
},
"license" : "MIT",
"keywords" : [
"request",
"debug",
"http",
"https",
"headers"
],
"scripts" : {
"test" : "node node_modules/.bin/mocha"
},
"main" : "index.js",
"devDependencies" : {
"detect-engine" : "~1.0.2",
"express" : "~4.8.6",
"mocha" : "~1.21.4",
"passport" : "~0.2.0",
"passport-http" : "~0.2.2",
"request" : "~2.50.0",
"should" : "~4.0.4"
},
"dependencies" : {
"stringify-clone": "^1.0.0"
}
}