forked from p0psicles/vue-good-table
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.48 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": "vue-good-table",
"version": "2.21.8",
"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": "[email protected]"
},
"license": "MIT",
"poi": {
"entry": "dev/main.js",
"output": {
"dir": "dev/dist",
"publicUrl": "./",
"html": {
"template": "dev/index.html"
}
}
},
"dependencies": {
"date-fns": "^2.17.0",
"diacriticless": "1.0.1",
"lodash.isequal": "^4.5.0"
},
"devDependencies": {
"@vuepress/plugin-google-analytics": "^1.0.0-rc.1",
"bili": "^4.8.0",
"eslint-config-airbnb": "^18.2.0",
"node-sass": "^4.12.0",
"poi": "^12.7.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-vue": "^5.1.9",
"sass-loader": "^7.1.0",
"vue": "^2.6.10",
"vue-template-compiler": "^2.6.10",
"vuepress": "^1.0.0-rc.1"
},
"resolutions": {
"node-sass/node-gyp": "^9.4.0"
}
}