-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.74 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.74 KB
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
{
"name": "redux-modules-middleware",
"version": "1.2.0",
"description": "A collection of common redux-module action middleware.",
"main": "lib/index.js",
"scripts": {
"test": "mocha --compilers js:babel-register tests/*.js",
"dev": "node -r babel-core/register scripts/webpack",
"build": "babel src --out-dir lib",
"lint": "eslint src tests",
"prepublish": "npm run build"
},
"keywords": [
"redux",
"reducer",
"react",
"modules",
"ducks",
"store",
"redux-modules",
"middleware"
],
"author": "Marcus Bernales",
"bugs": {
"url": "https://github.com/mboperator/redux-modules-middleware/issues"
},
"homepage": "https://github.com/mboperator/redux-modules-middleware",
"repository": {
"type": "git",
"url": "https://github.com/mboperator/redux-modules-middleware.git"
},
"license": "ISC",
"dependencies": {},
"devDependencies": {
"app-root-path": "^1.0.0",
"babel": "^6.5.2",
"babel-cli": "^6.6.5",
"babel-core": "^6.7.2",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.7.2",
"chai": "^3.5.0",
"enzyme": "^2.3.0",
"eslint": "^3.10.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.7.0",
"mocha": "^2.4.5",
"mocha-sinon": "^1.1.5",
"prop-types": "^15.6.1",
"react": "^15.4.1",
"sinon": "^1.17.4",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1"
},
"peerDependencies": {
"prop-types": "^0.2.0 || ^15.6.1"
}
}