-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.5 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": "redux-mux",
"version": "0.1.15",
"description": "Multiplexer for dispatch and getState of multiple redux stores.",
"main": "lib/index.js",
"files": [
"lib",
"src",
"doc"
],
"scripts": {
"start": "babel src/lib -d lib --watch",
"prebuild": "rimraf lib",
"build": "babel src/lib -d lib",
"predoc": "rimraf doc",
"doc": "esdoc -c ./esdoc.json",
"prerelease": "npm run build",
"release": "npm version patch && npm publish",
"postrelease": "npm run release-doc",
"prerelease-doc": "npm run doc",
"release-doc": "git subtree push --prefix doc origin gh-pages",
"postrelease-doc": "git commit -am \"doc-release\" && git push --follow-tags",
"upgrade": "ncu -a && npm update",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cchamberlain/redux-mux.git"
},
"keywords": [
"redux",
"react",
"idle",
"monitor"
],
"dependencies": {
"chai": "^3.5.0"
},
"devDependencies": {
"babel-cli": "^6.7.7",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"esdoc": "^0.4.6",
"esdoc-es7-plugin": "0.0.3",
"rimraf": "^2.5.2"
},
"author": "Cole Chamberlain <cole.chamberlain@gmail.com> (https://github.com/cchamberlain)",
"license": "MIT",
"bugs": {
"url": "https://github.com/cchamberlain/redux-mux/issues"
},
"homepage": "https://cchamberlain.github.io/redux-mux"
}