forked from pburtchaell/redux-promise-middleware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.66 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
82
83
84
85
86
87
88
{
"name": "redux-promise-middleware",
"version": "4.1.0",
"description": "Redux middleware for handling promises and optimistic updates",
"main": "dist/index.js",
"scripts": {
"prepublish": "npm run build",
"precommit": "echo 'Running pre-commit hooks...' && npm run local-test",
"prebuild": "npm run local-test",
"build": "npm run build-commonjs & npm run build-umd & npm run build-umd-min",
"build-commonjs": "`npm bin`/babel src -d dist",
"build-umd": "`npm bin`/webpack dist/ReduxPromiseMiddleware.js",
"build-umd-min": "NODE_ENV=production `npm bin`/webpack dist/ReduxPromiseMiddleware.min.js",
"pretest": "npm run lint",
"test": "make test_coverage",
"prelocal-test": "npm run lint",
"local-test": "make test",
"lint": "`npm bin`/eslint src/**/*.js examples/**/*.js test/**/*.js",
"start": "babel-node examples/server.js"
},
"pre-commit": [
"precommit"
],
"repository": {
"type": "git",
"url": "git+https://github.com/pburtchaell/redux-promise-middleware.git"
},
"keywords": [
"redux",
"middleware",
"middlewares",
"promise",
"promises",
"optimistic update",
"optimistic updates",
"async",
"example"
],
"author": "Patrick Burtchaell <[email protected]> (pburtchaell.com)",
"contributors": [
"Thomas <[email protected]> (tomatao.co.uk)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/pburtchaell/redux-promise-middleware/issues"
},
"homepage": "https://github.com/pburtchaell/redux-promise-middleware",
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.2",
"babel-eslint": "^6.0.0",
"babel-loader": "^6.2.4",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"bluebird": "^3.4.0",
"chai": "^3.5.0",
"coveralls": "^2.11.9",
"eslint": "^2.5.1",
"eslint-config-airbnb": "^6.2.0",
"eslint-plugin-react": "^4.2.3",
"express-urlrewrite": "^1.2.0",
"faker": "^3.1.0",
"isomorphic-fetch": "^2.2.1",
"istanbul": "^1.0.0-alpha.2",
"json-server": "^0.8.9",
"lodash": "^4.6.1",
"mocha": "^2.3.3",
"mocha-lcov-reporter": "^1.2.0",
"pre-commit": "^1.1.3",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"react-redux": "^4.4.1",
"react-router": "^2.0.1",
"redux": "^3.0.4",
"redux-mock-store": "1.0.3",
"redux-thunk": "^2.0.1",
"sinon": "^1.17.2",
"sinon-chai": "^2.8.0",
"webpack": "^1.12.14",
"webpack-dev-middleware": "^1.5.1",
"webpack-hot-middleware": "^2.10.0"
},
"peerDependencies": {
"redux": "^2.0.0 || ^3.0.0"
}
}