-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
61 lines (61 loc) · 1.86 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
59
60
61
{
"name": "redux-component-state",
"version": "0.3.2",
"description": "Manage dynamic reducers specific for a component or a set of components",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib dist",
"build": "babel src --out-dir lib",
"build:umd": "webpack src/index.js dist/redux-component-state.js && NODE_ENV=production webpack src/index.js dist/redux-component-state.min.js",
"lint": "eslint src test examples",
"test": "NODE_ENV=test babel-node ./node_modules/.bin/tape test/**/*.spec.js | faucet",
"test:watch": "watch 'npm run test' test",
"test:cov": "./node_modules/.bin/browserify --bare -t babelify -t coverify ./test/*.spec.js | node | ./node_modules/.bin/coverify",
"prepublish": "npm run lint && npm run test && npm run clean && npm run build && npm run build:umd"
},
"repository": {
"type": "git",
"url": "https://github.com/cef62/redux-component-state.git"
},
"keywords": [
"redux",
"flux",
"react",
"decorator",
"reducer"
],
"author": "Matteo Ronchi",
"license": "MIT",
"bugs": {
"url": "https://github.com/cef62/redux-component-state/issues"
},
"homepage": "https://github.com/cef62/redux-component-state",
"devDependencies": {
"babel": "5.8.21",
"babel-core": "5.8.22",
"babel-eslint": "4.1.1",
"babel-loader": "5.1.4",
"babelify": "6.3.0",
"browserify": "11.1.0",
"coverify": "1.4.1",
"eslint": "1.4.1",
"eslint-config-airbnb": "0.0.8",
"eslint-plugin-react": "3.1.0",
"faucet": "0.0.1",
"isparta": "3.0.3",
"react": "0.13.3",
"react-redux": "2.0.0",
"redux": "2.0.0",
"rimraf": "2.3.4",
"sinon": "1.16.1",
"tape": "4.2.0",
"watch": "0.16.0",
"webpack": "1.9.6",
"webpack-dev-server": "1.8.2"
},
"dependencies": {},
"peerDependencies": {
"react": "^0.13.3",
"redux": "^2.0.0"
}
}