-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.56 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
52
53
54
55
56
57
58
{
"name": "redux-reducer-async",
"version": "1.1.2",
"main": "dist/index.js",
"scripts": {
"build": "webpack",
"lint": "yarn lint:js && yarn lint:md",
"lint:js": "eslint src",
"lint:md": "eslint --config .eslintrc-md.js **/*.md",
"prepublishOnly": "yarn test && yarn build",
"precommit": "yarn test",
"test": "yarn lint && yarn unit && codecov",
"unit": "jest --coverage"
},
"jest": {
"testMatch": [
"**/?(*.)(spec|test).js?(x)"
]
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-latest": "^6.24.1",
"codecov": "^2.2.0",
"eslint": "^4.1.1",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.6.1",
"eslint-plugin-markdown": "^1.0.0-beta.6",
"eslint-plugin-node": "^5.1.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"husky": "^0.14.2",
"jest": "^20.0.4",
"redux": "^3.7.1",
"redux-actions": "^2.2.1",
"redux-promise": "^0.5.3",
"redux-promise-middleware": "^4.3.0",
"webpack": "^3.0.0"
},
"author": "Anders D. Johnson (https://andersdjohnson.com)",
"repository": "AndersDJohnson/redux-reducer-async",
"license": "MIT",
"description": "Create redux reducers for async behaviors of multiple actions.",
"keywords": [
"redux",
"flux",
"reducer",
"async",
"promises",
"redux-promise",
"redux-promise-middleware",
"actions",
"flux standard actions",
"FSA",
"react"
]
}