-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.13 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
{
"name": "redux-modules-enhancer",
"version": "1.3.1",
"description": "A redux enhancer to support late-bound reducer, state and middleware injection.",
"main": "lib/modulesEnhancer.js",
"scripts": {
"clean": "rm -r -f dist",
"compile": "npm run clean && ./node_modules/.bin/webpack -p && ./node_modules/.bin/webpack -d --output-filename redux-modules-enhancer.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/redux-modules-enhancer.git",
"keywords": [
"redux",
"modules",
"enhancer",
"injection"
],
"author": "Ben Ellis",
"license": "MIT",
"dependencies": {
"redux": "^3.1.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.1.2",
"immutable": "^3.8.1",
"minifier": "^0.8.1",
"mocha": "^3.5.0",
"redux-thunk": "^2.2.0",
"webpack": "^3.5.6"
}
}