forked from xaksis/vue-good-table
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.44 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
{
"name": "vue-good-table",
"version": "2.14.1",
"sideEffects": false,
"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.es.js",
"files": [
"dist",
"src"
],
"scripts": {
"bundle": "bili",
"dev": "poi",
"docs:dev": "vuepress dev vp-docs",
"docs:build": "vuepress build vp-docs",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xaksis/vue-good-table"
},
"keywords": [
"vue",
"vuejs",
"table",
"datatable"
],
"author": {
"name": "xaksis",
"email": "shay@crayonbits.com"
},
"license": "MIT",
"poi": {
"entry": "dev/main.js",
"dist": "dev/dist",
"homepage": "./",
"html": {
"template": "dev/index.html"
}
},
"dependencies": {
"date-fns": "2.0.0-alpha.7",
"diacriticless": "1.0.1",
"lodash.assign": "^4.2.0",
"lodash.clone": "^4.5.0",
"lodash.clonedeep": "^4.5.0",
"lodash.filter": "^4.6.0",
"lodash.foreach": "^4.5.0"
},
"devDependencies": {
"bili": "^3.1.2",
"node-sass": "^4.9.0",
"poi": "^10.1.6",
"rollup-plugin-vue": "^3.0.0",
"sass-loader": "^6.0.6",
"vue": "^2.5.16",
"vue-template-compiler": "^2.5.16",
"vuepress": "^0.10.1",
"webpack": "^4.8.3"
}
}