forked from mui/material-ui
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.68 KB
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
47
48
49
50
{
"name": "material-ui",
"author": "Call-em-all Engineering Team",
"version": "0.8.0",
"description": "Material Design UI components built with React",
"main": "./lib",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prebuild": "rm -rf lib",
"jshint": "./node_modules/.bin/jsxhint --harmony 'src/**' --exclude src/utils/modernizr.custom.js",
"build": "npm run jshint && ./node_modules/.bin/babel --stage 1 ./src --out-dir ./lib",
"prepublish": "npm run build",
"build:meteor:material-ui": "./node_modules/.bin/browserify -r ./lib -u react/addons -u react --standalone mui -o ./meteor-bundle.js",
"build:meteor:tap-event-plugin": "./node_modules/.bin/browserify -r react-tap-event-plugin -u react/addons -u react --standalone injectTapEventPlugin -o ./meteor-tap-event-plugin.js",
"build:meteor": "npm run build && npm run build:meteor:material-ui && npm run build:meteor:tap-event-plugin"
},
"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",
"jsxhint": "^0.15.0",
"react": "^0.13.3",
"react-tools": "^0.13.3",
"browserify": "^7.0.3",
"react-router": "^0.13.3",
"react-tap-event-plugin": "^0.1.6"
}
}