forked from FormidableLabs/radium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 951 Bytes
/
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
{
"name": "radium",
"version": "0.10.1",
"description": "A set of tools to manage inline styles on React elements",
"main": "modules/index.js",
"repository": {
"type": "git",
"url": "https://github.com/formidablelabs/radium.git"
},
"homepage": "https://github.com/formidablelabs/radium",
"bugs": "https://github.com/formidablelabs/radium/issues",
"directories": {
"example": "examples"
},
"scripts": {
"dist": "webpack && webpack --config=webpack.config.minified.js",
"examples": "webpack-dev-server --config examples/webpack.config.js --no-info --content-base examples/"
},
"license": "MIT",
"peerDependencies": {
"react": ">=0.12.0 <0.14.0"
},
"dependencies": {
"lodash": "^3.2.0"
},
"devDependencies": {
"gulp": "^3.8.11",
"gulp-eslint": "^0.6.0",
"jsx-loader": "^0.12.2",
"react": ">=0.12.0 <0.14.0",
"webpack": "^1.5.3",
"webpack-dev-server": "^1.7.0"
}
}