-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
61 lines (61 loc) · 1.28 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
{
"name": "vue-2-3",
"version": "0.0.0-semantic-release",
"description": "Interop Vue 2 components in Vue 3 apps and vice versa",
"keywords": [
"vue",
"vue 2",
"vue 3",
"interop",
"components"
],
"license": "MIT",
"repository": "privatenumber/vue-2-3",
"funding": "https://github.com/privatenumber/vue-2-3?sponsor=1",
"author": {
"name": "Hiroki Osame",
"email": "[email protected]"
},
"files": [
"to-vue-2.js",
"to-vue-2.umd.js",
"to-vue-3.js",
"to-vue-3.umd.js"
],
"scripts": {
"lint": "xo",
"test": "jest --coverage",
"build": "rollup -c --environment NODE_ENV:production"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"xo",
"jest --bail --findRelatedTests"
]
},
"devDependencies": {
"@babel/preset-env": "^7.12.1",
"@rollup/plugin-node-resolve": "^10.0.0",
"@vue/test-utils": "^1.1.1",
"babel-jest": "^26.6.3",
"core-js": "^3.7.0",
"husky": "^4.3.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.1",
"outdent": "^0.7.1",
"rollup": "^2.33.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-filesize": "^9.0.2",
"rollup-plugin-terser": "^7.0.2",
"vue": "^2.6.12",
"vue-frag": "^1.1.2",
"vue-template-compiler": "^2.6.12",
"vue3": "npm:vue@^3.0.0",
"xo": "^0.34.2"
}
}