forked from cscan/vue-excel-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.83 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
{
"name": "vue-excel-editor",
"email": "[email protected]",
"description": "Vue2 plugin for displaying and editing the array-of-object in Excel style",
"version": "1.5.5",
"main": "src/main.js",
"dependencies": {
"moment": "^2.24.0",
"vue2-datepicker": "^3.3.0",
"vuedraggable": "^2.23.2",
"xlsx": "^0.17.0"
},
"scripts": {
"build": "npm run build:umd & npm run build:es & npm run build:unpkg",
"build:umd": "rollup --config build/rollup.config.js --format umd --file dist/vue-excel-editor.umd.js",
"build:es": "rollup --config build/rollup.config.js --format es --file dist/vue-excel-editor.esm.js",
"build:unpkg": "rollup --config build/rollup.config.js --format iife --file dist/vue-excel-editor.min.js"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^7.0.0",
"rollup": "^1.17.0",
"rollup-plugin-babel-minify": "^9.1.1",
"rollup-plugin-cleanup": "^3.1.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-css-porter": "^1.0.2",
"rollup-plugin-vue": "^5.1.5",
"vue": "^2.6.10",
"vue-template-compiler": "^2.6.10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cscan/vue-excel-editor.git"
},
"keywords": [
"vue",
"vue2",
"vuejs",
"excel",
"data",
"grid",
"table",
"v-model",
"editor",
"editable",
"javascript",
"DHTML",
"no-jquery",
"grid-editor",
"online-editor",
"data-grid",
"data-table",
"spreadsheet",
"tabular-data",
"edit-cell",
"editable-table",
"data-spreadsheet",
"bootstrap",
"responsive",
"navigatable",
"contenteditable"
],
"author": "Kenneth Cheng",
"license": "MIT",
"bugs": {
"url": "https://github.com/cscan/vue-excel-editor/issues"
},
"homepage": "https://github.com/cscan/vue-excel-editor#readme"
}