-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
117 lines (117 loc) · 3.21 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "vue-tabulator",
"description": "The best way to use Tabulator in Vue projects",
"version": "1.3.0",
"engines": {
"node": ">=12"
},
"scripts": {
"release": "release-it",
"release:rc": "npm run release -- --preRelease=rc",
"release:patch": "npm run release -- patch -n",
"serve": "vue-cli-service serve",
"dev": "npm run serve",
"build": "vue-cli-service build --target lib --name vue-tabulator src/entry.ts",
"lint": "vue-cli-service lint",
"test": "npm run lint && npm run test:unit && npm run test:e2e",
"test:e2e": "npm run test:e2e:local -- --headless",
"test:e2e:local": "vue-cli-service test:e2e --mode development",
"test:unit": "vue-cli-service test:unit",
"coveralls": "npm run test:unit -- --coverage && cat ./coverage/lcov.info | coveralls",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"docs:publish": "./scripts/deploy.sh",
"commit": "git-cz"
},
"gitHooks": {
"commit-msg": "node scripts/verify-commit-msg.js"
},
"repository": {
"type": "git",
"url": "https://github.com/angeliski/vue-tabulator"
},
"keywords": [
"table",
"grid",
"datagrid",
"tabulator",
"editable",
"cookie",
"sort",
"format",
"resizable",
"list",
"scrollable",
"ajax",
"json",
"widget",
"vue"
],
"author": "Rogerio Angeliski",
"license": "MIT",
"bugs": {
"url": "https://github.com/angeliski/vue-tabulator/issues"
},
"dependencies": {
"@types/dashify": "^1.0.0",
"@types/lodash.mergewith": "^4.6.6",
"@types/tabulator-tables": "4.8.0",
"core-js": "^3.3.6",
"dashify": "^2.0.0",
"lodash.mergewith": "^4.6.2",
"vue-class-component": "^7.1.0",
"vue-property-decorator": "^8.3.0"
},
"peerDependencies": {
"tabulator-tables": "4.8.1",
"vue": "^2.6.12",
"vue-template-compiler": "^2.6.12"
},
"devDependencies": {
"@types/jest": "^24.0.21",
"@typescript-eslint/parser": "^2.6.1",
"@vue/cli-plugin-babel": "^4.5.6",
"@vue/cli-plugin-e2e-cypress": "^4.5.6",
"@vue/cli-plugin-eslint": "^4.5.6",
"@vue/cli-plugin-typescript": "^4.5.6",
"@vue/cli-plugin-unit-jest": "^4.5.6",
"@vue/cli-service": "^4.5.6",
"@vue/eslint-config-airbnb": "^4.0.1",
"@vue/eslint-config-typescript": "^4.0.0",
"@vue/test-utils": "^1.0.0-beta.20",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.3",
"chalk": "^3.0.0",
"commitizen": "^4.0.3",
"copy-webpack-plugin": "^5.0.4",
"coveralls": "^3.0.7",
"cz-conventional-changelog": "3.0.2",
"eslint": "^5.16.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-vue": "^5.2.3",
"lint-staged": "^9.4.2",
"node-sass": "^4.14.1",
"release-it": "^12.4.3",
"sass-loader": "^10.0.2",
"ts-jest": "^24.1.0",
"typescript": "~3.6.4",
"vuepress": "^1.2.0",
"yorkie": "^2.0.0"
},
"files": [
"dist/*",
"src/*",
"public/*",
"*.json",
"*.js",
"*.ts"
],
"main": "./dist/vue-tabulator.umd.js",
"browser": "./dist/vue-tabulator.common.js",
"unpkg": "./dist/vue-tabulator.umd.min.js",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}