-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.76 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
55
56
57
58
{
"name": "redux-multiplex",
"version": "0.0.2",
"description": "Provides a higher-order reducer for managing multiple instances of the same redux state subtree.",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib",
"build": "npm run clean && babel src --out-dir lib",
"test": "mocha test --recursive --require ./test/testHelper.js --compilers js:babel/register",
"test:watch": "npm run test -- --watch",
"test:cov": "babel-node ./node_modules/.bin/isparta cover --report=html _mocha -- --recursive --require ./test/testHelper.js --compilers js:babel/register",
"test:cov:open": "npm run test:cov && open ./coverage/index.html",
"lint": "npm run lint:eslint && npm run lint:jscs && npm run lint:flow",
"lint:flow": "flow",
"lint:eslint": "eslint ./",
"lint:jscs": "jscs ./",
"prepublish": "npm run lint && npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/reducks/redux-multiplex.git"
},
"keywords": [
"react",
"redux",
"reducer",
"multiplex"
],
"authors": [
"Sebastian Siemssen <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/reducks/redux-multiplex/issues"
},
"homepage": "https://github.com/reducks/redux-multiplex",
"devDependencies": {
"babel": "^5.8.23",
"babel-core": "^5.8.25",
"babel-eslint": "^4.1.3",
"babel-loader": "^5.3.2",
"chai": "^3.3.0",
"eslint": "^1.5.1",
"eslint-config-airbnb": "^0.1.0",
"flow-bin": "^0.16.0",
"isparta": "^3.1.0",
"istanbul": "^0.3.21",
"jscs": "^2.2.1",
"mocha": "^2.3.3",
"rimraf": "^2.4.3",
"sinon": "^1.17.1",
"sinon-chai": "^2.8.0",
"webpack": "^1.12.2"
},
"dependencies": {
"redux": "^3.0.2"
}
}