-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
45 lines (45 loc) · 1.12 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
{
"name": "redux-theme",
"version": "0.3.4",
"description": "Theme and Styles provider for Redux",
"main": "lib/index.js",
"scripts": {
"prepublish": "babel src --out-dir lib",
"build": "babel src --out-dir lib",
"clean": "rimraf lib",
"test": "mocha --compilers js:babel/register --require ./test/test_helper.js --recursive",
"test:watch": "npm run test -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SamLebarbare/redux-theme.git"
},
"keywords": [
"react",
"redux",
"theme",
"styles"
],
"author": "Sam Le Barbare <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/SamLebarbare/redux-theme/issues"
},
"homepage": "https://github.com/SamLebarbare/redux-theme#readme",
"devDependencies": {
"babel": "^5.8.29",
"chai": "^3.4.0",
"chai-immutable": "^1.5.1",
"jsdom": "^7.0.2",
"mocha": "^2.3.3",
"react": "^0.14.2",
"rimraf": "^2.4.3"
},
"dependencies": {
"immutable": "^3.7.5",
"radium": "^0.14.3",
"react": "^0.14.1",
"react-redux": "^4.0.0",
"redux": "^3.0.4"
}
}