-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
67 lines (67 loc) · 1.67 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
{
"name": "easy-select",
"version": "1.0.0",
"private": true,
"author": "fy <fy0748@gmail.com>",
"scripts": {
"serve": "npm run build-watch",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"analyze": "npm run build --report",
"build-watch": "vue-cli-service build-watch",
"i18n:report": "vue-cli-service i18n:report --src './src/**/*.?(js|vue)' --locales './src/locales/**/*.json'"
},
"dependencies": {
"clipboard": "^2.0.4",
"core-js": "^2.6.5",
"element-ui": "^2.8.2",
"vue": "^2.6.10",
"vue-i18n": "^8.18.2"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.7.0",
"@vue/cli-plugin-eslint": "^3.7.0",
"@vue/cli-service": "^3.7.0",
"@vue/eslint-config-standard": "^5.1.2",
"babel-eslint": "^10.0.1",
"babel-plugin-component": "^1.1.1",
"copy-webpack-plugin": "^4.6.0",
"eslint": "^5.16.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^5.0.0",
"vue-cli-plugin-chrome-ext": "0.0.5",
"vue-cli-plugin-i18n": "^1.0.1",
"vue-template-compiler": "^2.5.21",
"webextension-polyfill": "^0.6.0",
"zip-webpack-plugin": "^3.0.0"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {},
"parserOptions": {
"parser": "babel-eslint"
},
"globals": {
"browser": true,
"chrome": true
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 50%"
]
}