-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.25 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
{
"name": "requisition",
"description": "ES7 async/await ready http client",
"version": "1.7.0",
"author": "Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)",
"license": "MIT",
"repository": "thenables/requisition",
"dependencies": {
"any-promise": "^1.1.0",
"cookie": "^0.3.1",
"destroy": "^1.0.3",
"fs-cp": "^1.2.0",
"http-errors": "^1.2.7",
"media-typer": "^0.3.0",
"memorizer": "^1.0.0",
"methods": "^1.1.0",
"mime-types": "^2.0.2",
"mz": "^2.1.0",
"parse-link-header": "^1.0.0",
"statuses": "^1.2.0",
"stream-to-array": "^2.0.2",
"temp-path": "^1.0.0",
"type-is": "^1.5.2"
},
"devDependencies": {
"basic-auth": "^1.0.0",
"bluebird": "^3.1.1",
"body-parser": "^1.10.0",
"concat-stream": "^1.4.7",
"cookie-parser": "^1.4.1",
"express": "^4.9.8",
"istanbul": "^0.4.2",
"mocha": "^3.0.2"
},
"scripts": {
"test": "mocha --bail",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot",
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot"
},
"keywords": [
"request",
"promise",
"http",
"https",
"client"
],
"main": "lib",
"files": [
"lib"
]
}