-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.01 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
{
"name": "react-classname-module",
"version": "0.1.1",
"description": "Write CSS Modules painless with className and classnames()",
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/51seven/react-classname-module.git"
},
"scripts": {
"watch": "babel src --watch --out-dir lib",
"compile": "babel src --out-dir lib",
"prepublish": "npm run compile",
"test": "echo \"Error: no test specified, d'oh!\" && exit 1"
},
"keywords": [
"react",
"classnames",
"css",
"modules"
],
"homepage": "https://github.com/51seven/react-classname-module",
"bugs": "https://github.com/51seven/react-classname-module/issues",
"author": {
"name": "timomeh",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"classnames": "^2.2.0",
"react": "^0.14.3"
},
"devDependencies": {
"babel-plugin-transform-object-rest-spread": "^6.1.18",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18"
}
}