forked from laurisvan/request-promise-lite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.23 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
{
"name": "request-promise-lite",
"version": "0.5.2",
"description": "Lightweight, promiseful http/https request client",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/laurisvan/request-promise-lite.git"
},
"scripts": {
"test": "node_modules/gulp/bin/gulp.js test",
"build": "node_modules/gulp/bin/gulp.js build"
},
"author": "Lauri Svan <lauri.svan@sc5.io> (https://github.com/laurisvan)",
"keywords": [
"request",
"http",
"promise"
],
"license": "MIT",
"devDependencies": {
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015-node4": "^2.1.0",
"chai": "^3.5.0",
"eslint": "^2.13.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.9.2",
"eslint-plugin-jsx-a11y": "^1.5.3",
"eslint-plugin-react": "^5.2.2",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-bump": "^2.2.0",
"gulp-eslint": "^2.0.0",
"gulp-mocha": "^2.2.0",
"gulp-sequence": "^0.4.5",
"gulp-sourcemaps": "^1.6.0",
"jsonpath": "^0.2.2",
"minimist": "^1.2.0",
"mocha": "^2.4.5",
"sinon": "^1.17.3",
"source-map-support": "^0.4.0"
},
"dependencies": {},
"engines": {
"node": ">=4.2"
}
}