-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.51 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
{
"name": "reductus",
"version": "0.0.1",
"description": "A boilerplate-adverse library for state management and code organization in Redux applications.",
"main": "dist/reductus.js",
"scripts": {
"build": "rollup -c config/rollup.config.dist.js",
"dev": "rollup -c config/rollup.config.dev.js --watch",
"test": "NODE_ENV=test mocha --reporter list --require babel-register --require babel-polyfill"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jmar777/reductus.git"
},
"keywords": [
"redux",
"actions",
"dispatch",
"boilerplate",
"store",
"reducer",
"reducers",
"dynamic",
"state",
"slice",
"react"
],
"author": "Jeremy Martin <jmar777@gmail.com> (https://twitter.com/jmar777)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jmar777/reductus/issues"
},
"homepage": "https://github.com/jmar777/reductus#readme",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-register": "^6.26.0",
"expect": "^21.1.0",
"mocha": "^3.5.3",
"redux": "^3.7.2",
"rollup": "^0.50.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.2.1",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^2.0.1"
},
"dependencies": {
"redux-cake": "0.0.3",
"reselect": ">=3.0.1"
}
}