-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
40 lines (40 loc) · 1020 Bytes
/
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
{
"name": "redux-unhandled-action",
"version": "1.3.0",
"description": "Redux middleware that logs an error to the console when an action does not mutate state",
"main": "dist/index.js",
"scripts": {
"test": "npm run build && node ./test/index.js",
"build": "babel src --out-dir dist",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/socialtables/redux-unhandled-action.git"
},
"keywords": [
"redux",
"redux-middleware",
"warning",
"devtool",
"dev",
"tool",
"react",
"flux"
],
"author": "Social Tables",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/socialtables/redux-unhandled-action/issues"
},
"homepage": "https://github.com/socialtables/redux-unhandled-action#readme",
"devDependencies": {
"babel-cli": "^6.2.0",
"babel-preset-env": "^1.7.0",
"sinon": "^1.17.2",
"tape": "^4.2.2"
},
"dependencies": {
"lodash.isplainobject": "^4.0.6"
}
}