-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.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": "redux-orchestrate",
"version": "1.2.0",
"description": "Redux middleware for coordinating actions and handling side effects.",
"main": "lib/index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"codecov": "jest && codecov --token=d3717906-3f60-47ed-9bc9-2983b6daaab0",
"build": "babel src -d ./lib",
"prepublish": "npm test && npm run build"
},
"keywords": [
"redux",
"middleware",
"thunk",
"async",
"cancel",
"debounce",
"saga"
],
"repository": {
"type": "git",
"url": "git+https://github.com/domagojk/redux-orchestrate.git"
},
"author": "Domagoj Kriskovic",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-jest": "^20.0.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"jest": "^20.0.0",
"redux": "^3.6.0",
"regenerator-runtime": "^0.10.5"
},
"dependencies": {
"axios": "^0.16.1"
}
}