forked from emmenko/react-redux-custom-store
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 2.1 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "react-redux-custom-store",
"version": "1.0.0",
"description": "Simple wrapper around react-redux to allow configuring and using connect with a custom store name.",
"homepage": "https://github.com/emmenko/react-redux-custom-store",
"author": "Nicola Molinari <[email protected]>",
"license": "MIT",
"main": "dist",
"scripts": {
"dist": "rimraf dist && babel lib --out-dir dist",
"lint": "eslint lib test",
"release": "mversion patch -m",
"release:patch": "mversion patch -m",
"release:minor": "mversion minor -m",
"release:major": "mversion major -m",
"test": "NODE_ENV=test babel-node test/index.js | tap-spec",
"test:watch": "watch 'npm test' lib test -d"
},
"peerDependencies": {
"react": ">=0.14",
"react-redux": ">=4"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.6.5",
"babel-eslint": "^5.0.0",
"babel-plugin-transform-runtime": "^6.6.0",
"babel-polyfill": "^6.6.1",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-runtime": "^6.6.1",
"cz-conventional-changelog": "1.1.5",
"enzyme": "^2.0.0",
"eslint": "^2.2.0",
"eslint-config-airbnb": "^6.2.0",
"eslint-plugin-react": "^4.1.0",
"jsdom": "^8.1.0",
"mversion": "^1.10.1",
"react": "^0.14.7",
"react-addons-test-utils": "^0.14.7",
"react-dom": "^0.14.7",
"react-redux": "^4.4.1",
"redux": "^3.3.1",
"rimraf": "^2.5.2",
"tap-spec": "^4.1.1",
"tape": "^4.5.0",
"watch": "^0.17.1"
},
"repository": {
"type": "git",
"url": "https://github.com/emmenko/react-redux-custom-store"
},
"bugs": {
"url": "https://github.com/emmenko/react-redux-custom-store/issues"
},
"keywords": [
"react",
"redux",
"store",
"custom",
"nested"
],
"engines": {
"node": ">=4",
"npm": ">=2"
},
"eslintConfig": {
"extends": "airbnb",
"rules": {
"semi": [ 2, "never" ],
"space-before-function-paren": [ 2, "always" ]
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}