forked from dream2023/vue-ele-table
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
57 lines (57 loc) · 1.41 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
{
"name": "vue-ele-table",
"version": "0.1.5",
"description": "基于 element-ui 功能强大的表格组件",
"license": "MIT",
"private": false,
"scripts": {
"serve": "vue-cli-service serve",
"build:lib": "vue build -t lib --name vue-ele-table -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-table"
},
"main": "dist/vue-ele-table.umd.min.js",
"homepage": "https://github.com/dream2023/vue-ele-table",
"keywords": [
"vue-ele-table",
"vue table",
"element table",
"element",
"element-ui table",
"element table",
"el-editable",
"datatable"
],
"dependencies": {
"vue-ele-editable": "^1.0.3"
},
"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",
"axios": "^0.19.0",
"babel-eslint": "^10.0.1",
"core-js": "^2.6.5",
"element-ui": "^2.9.2",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.0.0",
"lint-staged": "^8.1.5",
"mockjs": "^1.0.1-beta3",
"vue": "^2.6.10",
"vue-template-compiler": "^2.6.10"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,vue}": [
"vue-cli-service lint",
"git add"
]
}
}