-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.2 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
{
"name": "react-easy-style",
"version": "2.0.0",
"description": "A tiny library to easy apply css/styles to react components",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/maxguzenski/react-easy-style.git"
},
"keywords": [
"react",
"reactjs",
"css",
"inline",
"style",
"styles"
],
"author": "Maximiliano Guzenski <[email protected]> (http://github.com/maxguzenski)",
"homepage": "https://github.com/maxguzenski/react-easy-style",
"bugs": "https://github.com/maxguzenski/react-easy-style/issues",
"scripts": {
"build": "babel src/ -d lib/",
"test": "mocha --compilers js:babel/register --recursive",
"test:watch": "mocha --compilers js:babel/register --recursive --watch",
"prepublish": "rm -Rf lib/ && npm run build"
},
"license": "MIT",
"dependencies": {
"classnames": "~2.1.3",
"react-addons-clone-with-props": "^0.14.3"
},
"devDependencies": {
"babel": "^5.5.8",
"babel-core": "5.8.22",
"babel-loader": "^5.1.4",
"expect": "latest",
"jsdom": "^3.1.2",
"mocha": "latest",
"mocha-jsdom": "^1.0.0",
"react": "^0.14.0",
"react-addons-test-utils": "^0.14.0"
}
}