-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.97 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.97 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "react-material-design-lite",
"version": "0.6.0",
"description": "React component wrappers around Google's Material Design Lite library",
"author": "Blaine Bublitz <blaine@iceddev.com> (http://iceddev.com)",
"contributors": [],
"repository": "iceddev/react-material-design-lite",
"license": "MIT",
"engines": {
"node": ">= 0.10"
},
"main": "index.js",
"files": [
"LICENSE",
"index.js"
],
"scripts": {
"test": "eslint src/*.js",
"build": "webpack",
"start": "webpack-dev-server --config ./example/webpack.config.babel.js",
"prepublish": "npm run build"
},
"dependencies": {
"babel-eslint": "^7.1.0",
"classnames": "^2.1.3",
"react": "^15.3.2"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-loader": "^6.2.7",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-react-html-attrs": "^2.0.0",
"babel-plugin-transform-class-properties": "^6.18.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"css-loader": "^0.25.0",
"eslint": "^3.10.1",
"eslint-config-airbnb": "^11.0.0",
"eslint-plugin-import": "^1.14.0",
"eslint-plugin-jsx-a11y": "^2.2.1",
"eslint-plugin-react": "^6.7.0",
"exports-loader": "^0.6.3",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"node-libs-browser": "^0.5.2",
"postcss": "^5.2.5",
"postcss-cssnext": "^2.8.0",
"postcss-import": "^8.2.0",
"postcss-inline-svg": "^2.2.0",
"postcss-loader": "^1.1.1",
"postcss-nested": "^1.0.0",
"postcss-svgo": "^2.1.5",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.10.1",
"webpack-dev-server": "^1.16.2"
},
"keywords": [
"material",
"material design",
"mdl",
"react"
]
}