This repository has been archived by the owner on Dec 1, 2022. It is now read-only.
forked from kradio3/react-mdc-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.27 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "react-mdc-web",
"version": "0.14.0",
"description": "React web components for Material Design",
"main": "lib/index.js",
"jsnext:main": "src/index.js",
"author": "kradio3",
"license": "SEE LICENSE IN LICENSE.md",
"repository": "kradio3/react-mdc-web",
"keywords": [
"react",
"mdc",
"web",
"ui",
"material",
"design",
"components",
"web"
],
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-plugin-transform-class-properties": "^6.19.0",
"babel-plugin-transform-object-rest-spread": "^6.20.2",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-2": "^6.18.0",
"conventional-changelog": "^1.1.0",
"css-loader": "^0.26.1",
"eslint": "^3.12.2",
"eslint-config-airbnb": "^14.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.9.0",
"fs-extra-promise": "^1.0.1",
"node-sass": "^3.7.0",
"postcss-loader": "^1.2.1",
"react": "^15.4.0",
"react-dom": "^15.4.0",
"rimraf": "^2.6.1",
"sass-loader": "^4.1.1",
"sitemap": "^1.12.0",
"standard-version": "^4.0.0",
"style-loader": "^0.13.1",
"webpack": "^2.2.1"
},
"files": [
"LICENSE.md",
"README.md",
"lib/",
"out/"
],
"scripts": {
"preversion": "npm test",
"lint": "eslint src/**",
"pretest": "npm run lint",
"test": "echo \"TODO tests\"",
"clean": "rimraf lib",
"compile": "babel src --ignore __tests__ --out-dir lib",
"docs:develop": "cd docs && ./node_modules/.bin/gatsby develop",
"docs:build": "cd docs && NODE_ENV=production ./node_modules/.bin/gatsby build --prefix-links",
"docs:deploy": "cd docs && ./node_modules/.bin/gh-pages -d public",
"docs:release": "npm run docs:build && npm run docs:deploy",
"watch": "npm run compile -- --watch",
"build-umd": "rm -rf out/ && NODE_ENV=production webpack",
"release": "npm run lint npm run clean && npm run compile && npm run build-umd && standard-version"
},
"dependencies": {
"classnames": "^2.2.5",
"material-components-web": "^0.19.0",
"prop-types": "^15.5.10"
}
}