forked from xaksis/vue-good-table
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.51 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
{
"name": "@technologyadvice/vue-good-table",
"version": "2.18.0",
"sideEffects": [
"*.vue",
"*.css"
],
"description": "A simple, clean data table for VueJS (2.x) with essential features like sorting, column filtering, pagination etc",
"main": "dist/vue-good-table.cjs.js",
"module": "dist/vue-good-table.esm.js",
"files": [
"dist",
"src"
],
"scripts": {
"bundle": "bili",
"dev": "poi --serve",
"docs:dev": "vuepress dev vp-docs",
"docs:build": "vuepress build vp-docs",
"test": "echo \"No test specified\""
},
"repository": "github:xaksis/vue-good-table",
"keywords": [
"vue",
"vuejs",
"table",
"datatable"
],
"author": {
"name": "xaksis",
"email": "shay@crayonbits.com"
},
"license": "MIT",
"poi": {
"entry": "dev/main.js",
"output": {
"dir": "dev/dist",
"publicUrl": "./",
"html": {
"template": "dev/index.html"
}
}
},
"dependencies": {
"date-fns": "^2.8.1",
"diacriticless": "1.0.1",
"lodash.assign": "^4.2.0",
"lodash.clonedeep": "^4.5.0",
"lodash.filter": "^4.6.0",
"lodash.foreach": "^4.5.0",
"lodash.isequal": "^4.5.0"
},
"devDependencies": {
"@vuepress/plugin-google-analytics": "^1.2.0",
"bili": "^4.8.1",
"node-sass": "^4.13.0",
"poi": "^12.7.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-vue": "^5.1.4",
"sass-loader": "^7.3.1",
"vue": "^2.6.10",
"vue-template-compiler": "^2.6.10",
"vuepress": "^1.2.0"
}
}