-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 1.05 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
{
"name": "redux-request-middleware",
"version": "0.14.0",
"description": "Redux middleware to dispatch Superagent or BackboneORM requests",
"main": "lib/index.js",
"author": {
"name": "Gwilym Humphreys",
"url": "https://github.com/gwilymhumphreys"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/founderlab/redux-request-middleware"
},
"scripts": {
"prepublish": "npm run build",
"build": "rm -rf ./lib && babel ./src --ignore '/node_modules/' --out-dir ./lib",
"watch": "rm -rf ./lib && babel ./src --ignore '/node_modules/' --watch --out-dir ./lib",
"test": "eval $(cat test/.env) mocha test/**/*.tests.js",
"cover": "eval $(cat test/.env) istanbul cover _mocha -- test/**/*.tests.js"
},
"dependencies": {
"lodash": "^4.13.1",
"retry-unless": "^1.0.0"
},
"devDependencies": {
"babel": "^5.8.38",
"babel-eslint": "^6.0.4",
"eslint": "^1.5.1",
"eslint-config-founderlab": "^0.1.0",
"expect": "^1.13.0",
"mocha": "^2.2.5",
"sinon": "^1.17.1"
}
}