forked from tmorehouse/vue-transfer-dom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.19 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
{
"name": "vue2-transfer-dom",
"version": "3.0.1",
"description": "Transfer DOM to another place",
"keywords": [
"Vue.js",
"vue",
"vue 2",
"transfer-dom",
"directive",
"portal",
"teleport"
],
"repository": {
"type": "git",
"url": "git+https://github.com/HIMISOCOOL/vue2-transfer-dom.git"
},
"author": "Matthew Meehan",
"homepage": "https://github.com/HIMISOCOOL/vue2-transfer-dom#readme",
"contributors": [
{
"name": "Troy Morehouse",
"url": "https://github.com/tmorehouse"
},
{
"name": "Bin Xin",
"url": "https://github.com/rhyzx"
},
{
"name": "Matthew Meehan",
"url": "https://github.com/HIMISOCOOL"
}
],
"license": "MIT",
"main": "dist/vue2-transfer-dom.common.prod.js",
"module": "dist/vue2-transfer-dom.esm.js",
"unpkg": "dist/vue2-transfer-dom.prod.js",
"jsdelivr": "dist/vue2-transfer-dom.prod.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"clean": "rimraf dist",
"typescript": "tsc -p tsconfig.declaration.json",
"build:library": "rollup -c",
"prebuild": "pnpm clean",
"build": "npm-run-all typescript build:library",
"test:unit": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src --ext .ts"
},
"peerDependencies": {
"vue": ">=2.2.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^11.2.0",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^7.0.0",
"eslint": "^7.32.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^6.2.2",
"lint-staged": "^9.5.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"rollup": "^2.57.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"typescript": "~4.4.3",
"vue": ">=2.2.0"
}
}