-
Notifications
You must be signed in to change notification settings - Fork 188
/
package.json
74 lines (74 loc) · 2.27 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
{
"name": "redux-promise-middleware",
"description": "Enables simple, yet robust handling of async action creators in Redux",
"version": "6.2.0",
"main": "dist/index.js",
"types": "src/index.d.ts",
"module": "dist/es/index.js",
"scripts": {
"prepare": "npm run build",
"start": "babel-node examples/server.js",
"build-es": "BABEL_ENV=es babel src -d dist/es",
"build-commonjs": "babel src -d dist",
"build-umd": "webpack --output-filename umd/redux-promise-middleware.js",
"build-umd-min": "NODE_ENV=production webpack --output-filename umd/redux-promise-middleware.min.js",
"build": "rm -rf dist & npm run build-commonjs & npm run build-es & npm run build-umd & npm run build-umd-min",
"prebuild": "npm run test",
"test": "jest",
"lint": "eslint src/**/*.js test/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pburtchaell/redux-promise-middleware.git"
},
"keywords": [
"redux",
"middleware",
"middlewares",
"promise",
"promises",
"optimistic update",
"optimistic updates",
"async",
"async functions"
],
"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": "^7.7.0",
"@babel/core": "^7.7.4",
"@babel/preset-env": "^7.7.1",
"@babel/preset-react": "^7.7.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"bluebird": "^3.5.0",
"coveralls": "^3.0.8",
"eslint": "^6.7.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"istanbul": "^1.0.0-alpha.2",
"jest": "^24.9.0",
"redux": "5.0.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
},
"peerDependencies": {
"redux": "^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0"
},
"jest": {
"verbose": true,
"moduleNameMapper": {
"redux-promise-middleware": "<rootDir>/src/index.js"
}
}
}