This repository has been archived by the owner on Nov 30, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathpackage.json
110 lines (110 loc) · 2.84 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "material-components-vue",
"version": "0.22.4",
"description": "Material Design components for Vue.js",
"author": "Mats Pfeiffer <mats.pfeiffer@googlemail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/matsp/material-components-vue.git"
},
"homepage": "https://matsp.github.io/material-components-vue",
"files": [
"dist"
],
"scripts": {
"lint": "eslint --ext .js --ext .vue --fix ./",
"build:lib": "webpack --config webpack.config.lib.js",
"build:es5": "webpack --config webpack.config.lib.es5.js",
"docs:dev": "vuepress dev docs",
"docs:prod": "vuepress build docs",
"watch:dev": "webpack --config webpack.config.lib.js -w",
"release": "standard-version"
},
"dependencies": {
"material-components-web": "^0.35.2"
},
"peerDependencies": {
"vue": "^2.5.16"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.49",
"@babel/plugin-transform-object-assign": "^7.0.0-beta.49",
"@babel/preset-env": "^7.0.0-beta.49",
"babel-eslint": "^8.2.3",
"babel-loader": "^8.0.0-beta.3",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-html": "^4.0.3",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-json": "^1.2.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"eslint-plugin-vue": "^4.5.0",
"file-loader": "^1.1.11",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"http-server": "^0.11.1",
"mini-css-extract-plugin": "^0.4.0",
"node-sass": "4.9.0",
"normalize.css": "^8.0.0",
"optimize-css-assets-webpack-plugin": "^4.0.2",
"postcss": "^6.0.22",
"postcss-loader": "^2.1.5",
"sass-loader": "^7.0.1",
"standard-version": "^4.4.0",
"uglifyjs-webpack-plugin": "^1.2.5",
"url-loader": "^1.0.1",
"vue": "^2.5.16",
"vue-loader": "^15.2.1",
"vue-template-compiler": "^2.5.16",
"vuepress": "^0.8.4",
"webpack": "^4.9.1",
"webpack-cli": "^2.1.4",
"webpack-dev-server": "^3.1.4",
"webpack-merge": "^4.1.2"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"eslintConfig": {
"root": true,
"parserOptions": {
"parser": "babel-eslint",
"sourceType": "module",
"allowImportExportEverywhere": true
},
"extends": [
"standard",
"plugin:vue/recommended"
],
"plugins": [
"html"
],
"settings": {
"html/html-extensions": [
".html"
]
},
"env": {
"browser": true,
"node": true,
"es6": true,
"jest": true
}
},
"eslintIgnore": [
"/dist"
]
}