forked from borisflesch/vue-good-table-next
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.08 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
69
70
71
72
73
74
75
76
{
"name": "vue-good-table-next",
"version": "0.2.1",
"description": "A simple, clean data table for Vue (3.x) with essential features like sorting, column filtering, pagination etc",
"author": {
"name": "boris",
"email": "[email protected]"
},
"contributors": [
{
"name": "xaksis",
"url": "https://github.com/xaksis"
}
],
"license": "MIT",
"scripts": {
"build": "rollup -c rollup.config.js",
"test:unit": "vue-cli-service test:unit",
"dev": "vite --config playground/vite.config.js",
"docs:build": "vuepress build vp-docs",
"docs:dev": "vuepress dev vp-docs",
"docs:serve": "vuepress serve vp-docs"
},
"main": "dist/vue-good-table.cjs.js",
"module": "dist/vue-good-table.esm.js",
"files": [
"dist",
"src"
],
"dependencies": {
"date-fns": "^2.25.0",
"lodash.isequal": "^4.5.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-replace": "^3.0.0",
"@vitejs/plugin-vue": "^1.9.4",
"@vue/babel-preset-app": "^4.5.15",
"@vue/cli-plugin-unit-jest": "^4.5.15",
"@vue/cli-service": "^4.5.15",
"@vue/component-compiler-utils": "^3.3.0",
"@vue/test-utils": "^2.0.0-rc.16",
"@vuepress/plugin-google-analytics": "^2.0.0-beta.26",
"@vuepress/plugin-register-components": "^2.0.0-beta.26",
"@vuepress/plugin-search": "^2.0.0-beta.26",
"chai": "^4.1.2",
"chalk": "^4.1.0",
"chromedriver": "^95.0.0",
"eslint-config-airbnb": "^18.2.0",
"postcss-loader": "^6.2.0",
"rollup": "^2.72.1",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-scss": "3",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.43.4",
"sinon": "^11.1.2",
"typescript": "^4.4.4",
"vite": "^2.6.13",
"vue": "^3.2.20",
"vue-jest": "^5.0.0-0",
"vuepress": "^2.0.0-beta.26",
"webpack-node-externals": "^3.0.0"
},
"keywords": [
"vue",
"vuejs",
"table",
"datatable"
],
"repository": "github:borisflesch/vue-good-table-next",
"sideEffects": [
"*.vue",
"*.css"
]
}