forked from tonyhb/redux-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.21 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
{
"name": "redux-ui",
"version": "0.0.15",
"description": "UI state management for Redux and React",
"main": "transpiled/index.js",
"scripts": {
"prepublish": "$(npm bin)/babel -d transpiled src",
"test": "$(npm bin)/mocha --compilers js:babel-register --recursive --require ./test/setup.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tonyhb/redux-ui.git"
},
"keywords": [
"react-component",
"redux",
"redux-ui",
"ui"
],
"author": "Tony Holdstock-Brown",
"license": "MIT",
"bugs": {
"url": "https://github.com/tonyhb/redux-ui/issues"
},
"homepage": "https://github.com/tonyhb/redux-ui#readme",
"devDependencies": {
"babel-cli": "6.5.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.4.1",
"jsdom": "^7.2.1",
"mocha": "^2.3.4",
"react-addons-test-utils": "^0.14.3",
"react-dom": "^0.14.3"
},
"dependencies": {
"babel-register": "^6.6.0",
"immutable": "^3.7.5",
"invariant": "^2.2.0",
"react": "^0.14.3 || ^15.0.1",
"react-redux": "^4.0.0",
"redux": "^3.0.4"
}
}