forked from request/request-promise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.15 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": "request-promise",
"version": "0.3.0",
"description": "The world-famous HTTP client 'Request' now Promises/A+ compliant. Powered by Bluebird.",
"keywords": [
"xhr",
"http",
"https",
"promise",
"request",
"then",
"thenable"
],
"homepage": "https://github.com/tyabonil/request-promise",
"bugs": {
"url": "https://github.com/tyabonil/request-promise/issues"
},
"license": "MIT",
"author": "Ty Abonil",
"contributors": [
"Nicolai Kamenzky (https://github.com/analog-nico)"
],
"main": "./lib/rp.js",
"repository": {
"type": "git",
"url": "https://github.com/tyabonil/request-promise.git"
},
"scripts": {
"test": "./node_modules/.bin/gulp validate"
},
"dependencies": {
"bluebird": "^2.3",
"lodash": "^2.4.1",
"request": "^2.34"
},
"devDependencies": {
"chai": "^1.10.0",
"chai-as-promised": "^4.1.1",
"chalk": "^0.5.1",
"gulp": "^3.8.10",
"gulp-istanbul": "^0.3.1",
"gulp-jshint": "^1.9.0",
"gulp-mocha": "^1.1.1",
"jshint-stylish": "^1.0.0",
"rimraf": "^2.2.8",
"run-sequence": "^1.0.1"
},
"engines": {
"node": ">=0.10.0"
}
}