-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
42 lines (42 loc) · 1.29 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
{
"name": "material-ui-mdi",
"version": "0.5.0",
"description": "Community Material Design Icons as Material-UI SvgIcon components",
"main": "",
"scripts": {
"clone-material-ui": "git clone [email protected]:callemall/material-ui.git && cd material-ui/icon-builder && npm install",
"get-mdi-svgs": "mkdir -p svg && node get-mdi-svgs.js",
"make-jsx": "node material-ui/icon-builder/build.js --output-dir jsx --svg-dir svg --mui-require absolute",
"make-js": "material-ui/icon-builder/node_modules/.bin/babel --stage 1 ./jsx --out-dir ./icons",
"build": "npm run clone-material-ui && npm run get-mdi-svgs && npm run make-jsx && npm run make-js",
"clean-all": "rm -rf material-ui jsx svg"
},
"repository": {
"type": "git",
"url": "git+https://github.com/conundrumer/material-ui-mdi.git"
},
"keywords": [
"react",
"react-component",
"material design",
"icons",
"icon",
"svg",
"material-ui",
"mui",
"mdi"
],
"author": "David Lu",
"license": "MIT",
"bugs": {
"url": "https://github.com/conundrumer/material-ui-mdi/issues"
},
"homepage": "https://github.com/conundrumer/material-ui-mdi#readme",
"peerDependencies": {
"material-ui": "*",
"react": "*"
},
"dependencies": {
"react-addons-pure-render-mixin": "*"
}
}