-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
62 lines (62 loc) · 2.01 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": "vuetify-draggable-treeview",
"version": "0.0.6",
"description": "draggable v-treeview component",
"main": "dist/v-draggable-treeview.umd.js",
"module": "dist/v-draggable-treeview.esm.js",
"unpkg": "dist/v-draggable-treeview.unpkg.js",
"repository": "https://github.com/suusan2go/vuetify-draggable-treeview.git",
"author": "suusan2go <ksuzuki180@gmail.com>",
"license": "MIT",
"scripts": {
"build": "npm run build:umd & npm run build:es & npm run build:unpkg",
"build:umd": "rollup --config build/rollup.config.js --format umd --file dist/v-draggable-treeview.umd.js",
"build:es": "rollup --config build/rollup.config.js --format es --file dist/v-draggable-treeview.esm.js",
"build:unpkg": "rollup --config build/rollup.config.js --format iife --file dist/v-draggable-treeview.min.js",
"lint": "eslint --ext .ts,.js,.vue src/",
"test": "jest"
},
"keywords": [
"vuetify",
"vuedraggable",
"drag",
"and",
"drop"
],
"devDependencies": {
"@babel/core": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@rollup/plugin-typescript": "^2.0.1",
"@types/jest": "^26.0.0",
"@typescript-eslint/eslint-plugin": "^2.10.0",
"@typescript-eslint/parser": "^2.10.0",
"@vue/test-utils": "^1.0.0-beta.30",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^27.0.6",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-vue": "^7.2.0",
"jest": "^25.4.0",
"jest-serializer-vue": "^2.0.2",
"prettier": "^2.0.5",
"rollup": "^1.27.8",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-vue": "^5.1.4",
"ts-jest": "^25.3.1",
"tslib": "^2.0.0",
"typescript": "^3.7.3",
"vue": "^2.6.10",
"vue-jest": "^3.0.5",
"vue-template-compiler": "^2.6.10",
"vuedraggable": "^2.23.2",
"vuetify": "^2.2.25"
},
"dependencies": {},
"peerDependencies": {
"vue": "*",
"vuedraggable": "*",
"vuetify": ">=2.2.0"
}
}