forked from mui/material-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.14 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": "material-ui",
"author": "Call-em-all Engineering Team",
"version": "0.9.2",
"description": "Material Design UI components built with React",
"main": "./lib",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prebuild": "rm -rf lib",
"eslint": "eslint src",
"build": "npm run eslint && babel --stage 1 ./src --out-dir ./lib",
"prepublish": "npm run build"
},
"keywords": [
"react",
"react-component",
"material design",
"material-ui",
"material ui"
],
"repository": {
"type": "git",
"url": "https://github.com/callemall/material-ui.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/callemall/material-ui/issues"
},
"homepage": "http://material-ui.com/",
"dependencies": {
"classnames": "^1.2.0",
"react-draggable2": "^0.5.1"
},
"peerDependencies": {
"react": ">=0.13",
"react-tap-event-plugin": ">=0.1.3"
},
"devDependencies": {
"babel": "^5.4.3",
"babel-eslint": "^3.1.17",
"eslint": "^0.23.0",
"eslint-plugin-react": "^2.5.2",
"react-router": "^0.13.3",
"react-tap-event-plugin": "^0.1.6"
}
}