-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.31 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
{
"name": "v-api-datatable",
"version": "1.4.8",
"description": "Vuetify upgraded v-datatable for server endpoints",
"author": "Komarov Roman <rom541997@gmail.com>",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build --skip-plugins vuetify --target lib --dest lib ./plugin/index.ts",
"lint": "eslint src test",
"clean": "rimraf lib",
"cover": "nyc --check-coverage npm run test:only",
"test": "npm run lint && npm run cover",
"test:examples": "node examples/",
"test:only": "mocha --require babel-core/register --require babel-polyfill --recursive",
"test:prod": "cross-env BABEL_ENV=production npm run test",
"test:watch": "npm test -- --watch"
},
"main": "lib/v-api-datatable.common.js",
"module": "lib/v-api-datatable.umd.js",
"files": [
"lib"
],
"devDependencies": {
"@mdi/font": "^7.0.96",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"@vue/cli-plugin-babel": "^4.5.14",
"@vue/cli-plugin-eslint": "^4.5.14",
"@vue/cli-plugin-typescript": "^4.5.14",
"@vue/cli-service": "^4.5.14",
"@vue/compiler-sfc": "^3.2.20",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^7.0.0",
"cross-env": "^7.0.3",
"eslint": "^6.8.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-vue": "^7.20.0",
"pluralize": "^8.0.0",
"prettier": "^2.4.1",
"pug": "^3.0.2",
"pug-plain-loader": "^1.1.0",
"rimraf": "^2.6.2",
"sass": "~1.32.6",
"sass-loader": "^10.2.0",
"typescript": "^4.4.4",
"vee-validate": "^3.4.14",
"vue": "^2.6.14",
"vue-cli-plugin-vuetify": "~2.4.3",
"vue-template-compiler": "^2.6.14",
"vuetify": "^2.6.4",
"vuetify-loader": "^1.7.0"
},
"peerDependencies": {
"vee-validate": "^3",
"vuetify": "^2"
},
"bugs": {
"url": "https://github.com/hastes/v-api-datatable/issues"
},
"engines": {
"node": ">= 16.12 <17"
},
"homepage": "https://github.com/hastes/v-api-datatable#readme",
"keywords": [
"fetch",
"api",
"datatable",
"vuetify",
"npm",
"module",
"javascript"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hastes/v-api-datatable.git"
},
"volta": {
"node": "16.12.0"
}
}