forked from erikras/redux-promise-listener
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.32 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "redux-promise-listener",
"version": "1.0.0",
"description":
"A Redux middleware that allows actions to be converted into Promises",
"main": "dist/redux-promise-listener.cjs.js",
"jsnext:main": "dist/redux-promise-listener.es.js",
"module": "dist/redux-promise-listener.es.js",
"files": ["dist"],
"scripts": {
"start": "nps",
"test": "nps test",
"precommit": "lint-staged && npm start validate"
},
"author":
"Erik Rasmussen <rasmussenerik@gmail.com> (http://github.com/erikras)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/erikras/redux-promise-listener.git"
},
"bugs": {
"url": "https://github.com/erikras/redux-promise-listener/issues"
},
"homepage": "https://github.com/erikras/redux-promise-listener#readme",
"devDependencies": {
"babel-eslint": "^8.2.2",
"babel-jest": "^22.4.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-2": "^6.24.1",
"bundlesize": "^0.16.0",
"doctoc": "^1.3.1",
"eslint": "^4.18.2",
"eslint-config-react-app": "^2.1.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-flowtype": "^2.46.1",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"flow-bin": "^0.68.0",
"glow": "^1.2.2",
"husky": "^0.14.3",
"jest": "^22.4.2",
"jest-cli": "^22.4.3",
"lint-staged": "^7.0.0",
"nps": "^5.8.2",
"nps-utils": "^1.5.0",
"prettier": "^1.11.1",
"prettier-eslint-cli": "^4.7.1",
"redux": "^3.7.2",
"rollup": "^0.56.5",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-flow": "^1.1.1",
"rollup-plugin-node-resolve": "^3.2.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^3.0.0"
},
"peerDependencies": {
"redux": ">3.0.0"
},
"lint-staged": {
"*.{js*,json,md,css}": ["prettier --write", "git add"]
},
"bundlesize": [
{
"path": "dist/redux-promise-listener.umd.min.js",
"threshold": "700B"
},
{
"path": "dist/redux-promise-listener.es.js",
"threshold": "1kB"
},
{
"path": "dist/redux-promise-listener.cjs.js",
"threshold": "1kB"
}
]
}