forked from svrcekmichal/redux-axios-middleware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.43 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
{
"name": "redux-axios-middleware",
"version": "1.2.0",
"description": "Redux middleware for fetching data with axios HTTP client",
"main": "lib/index.js",
"scripts": {
"prepublish": "npm run lint && npm run build",
"build": "node_modules/.bin/babel ./src -d ./lib --ignore '__tests__'",
"lint": "eslint -c .eslintrc src",
"test": "mocha --compilers js:babel-register --require ./test/test_helper.js",
"test:watch": "npm run test -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/svrcekmichal/redux-axios-middleware.git"
},
"author": "Michal Svrcek <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/svrcekmichal/redux-axios-middleware/issues"
},
"homepage": "https://github.com/svrcekmichal/redux-axios-middleware",
"peerDependencies": {
"axios": ">= 0.5"
},
"devDependencies": {
"axios": "^0.11.1",
"axios-mock-adapter": "^1.3.1",
"babel-cli": "^6.5.1",
"babel-eslint": "^6.0.2",
"babel-plugin-transform-object-rest-spread": "^6.3.13",
"babel-preset-es2015": "^6.3.13",
"chai": "^3.5.0",
"chai-shallow-deep-equal": "^1.4.0",
"eslint": "^2.4.0",
"eslint-config-airbnb": "^6.0.2",
"eslint-plugin-import": "^1.0.0-beta.0",
"eslint-plugin-react": "^4.0.0",
"estraverse-fb": "^1.3.1",
"mocha": "^2.4.5",
"redux": "^3.5.2",
"redux-mock-store": "^1.0.3",
"sinon": "^1.17.4"
}
}