-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
80 lines (80 loc) · 1.8 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
{
"name": "vue-ele-editable",
"description": "高效、简单、强大的 element-ui 行内编辑组件",
"version": "1.0.3",
"private": false,
"license": "MIT",
"scripts": {
"serve": "vue-cli-service serve",
"build:lib": "vue build -t lib --name vue-ele-editable -d ./dist/ ./src/index.js",
"build": "npm run lint & npm run build:lib",
"lint": "vue-cli-service lint"
},
"repository": {
"type": "git",
"url": "https://github.com/dream2023/vue-ele-editable"
},
"main": "dist/vue-ele-editable.umd.min.js",
"homepage": "https://github.com/dream2023/vue-ele-editable",
"keywords": [
"vue-ele-editable",
"editable",
"inline edit",
"edit cell",
"editable table",
"element table",
"el-editable",
"vue editable"
],
"dependencies": {
"dayjs": "^1.8.14",
"vue-ele-gallery": "^2.1.3",
"vue-ele-upload-image": "^2.0.4"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.8.0",
"@vue/cli-plugin-eslint": "^3.8.0",
"@vue/cli-service": "^3.8.0",
"@vue/eslint-config-standard": "^4.0.0",
"babel-eslint": "^10.0.1",
"core-js": "^2.6.5",
"element-ui": "^2.9.1",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.0.0",
"lint-staged": "^8.1.5",
"vue": "^2.6.10",
"vue-template-compiler": "^2.6.10"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"@vue/standard"
],
"rules": {},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"src/*.{js,vue}": [
"vue-cli-service lint",
"git add"
]
}
}