-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.28 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
{
"name": "react-redux-module",
"version": "1.3.3",
"description": "A react component for loading modules into redux using the redux-modules-enhancer package.",
"main": "dist/react-redux-module.min.js",
"scripts": {
"clean": "rm -r -f dist",
"compile": "npm run clean && ./node_modules/.bin/webpack -p && ./node_modules/.bin/webpack -d --output-filename react-redux-module.js",
"test": "npm run compile && mocha --compilers js:babel-core/register --reporter spec",
"prepare": "npm run compile",
"prepublishOnly": "git push --tags && git push"
},
"repository": "https://github.com/BEllis/react-redux-module.git",
"keywords": [
"redux",
"react",
"modules",
"injection"
],
"author": "Ben Ellis",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.1.2",
"minifier": "^0.8.1",
"mocha": "^3.5.0",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"webpack": "^3.5.6"
},
"dependencies": {
"prop-types": "^15.5.10",
"redux-modules-enhancer": "^1.3.0"
}
}