-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.12 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
{
"name": "vue-pocket-router",
"description": "Tiny replacement for vue-router that fully reloads the view component after navigation.",
"version": "2.3.0",
"keywords": [
"vue",
"router",
"refresh",
"reload",
"view",
"link",
"navigation",
"location",
"url"
],
"repository": "https://github.com/adamsol/vue-pocket-router",
"license": "MIT",
"author": {
"name": "Adam Sołtysik",
"url": "https://github.com/adamsol"
},
"dependencies": {
"url-pattern": "^1.0.3"
},
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@rollup/plugin-babel": "^5.3.1",
"@vue/test-utils": "^2.0.0",
"@vue/vue3-jest": "^27.0.0",
"babel-jest": "^27.5.1",
"jest": "^27.5.1",
"rollup": "^2.75.6",
"rollup-plugin-vue": "^6.0.0",
"vue": "^3.2.37"
},
"peerDependencies": {
"vue": "^3.2"
},
"scripts": {
"build": "rollup -c",
"test": "jest"
},
"files": [
"/dist/*.js"
],
"main": "dist/vue-pocket-router.cjs.js",
"module": "dist/vue-pocket-router.esm.js",
"unpkg": "dist/vue-pocket-router.global.js"
}