-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 1.89 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
82
{
"name": "vue-router-dom",
"version": "1.0.0-beta.1",
"description": "Router for Vue 3 and up",
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-ts-standard-pkg"
],
[
"@pika/plugin-build-node"
],
[
"@pika/plugin-build-web"
],
[
"@pika/plugin-build-deno"
]
]
},
"scripts": {
"build": "pika build",
"coverage": "jest --collect-coverage",
"codecov": "codecov",
"lint": "eslint --ext .js,.jsx,.vue,.ts,.tsx --fix .",
"test": "jest",
"watch": "jest --watch"
},
"keywords": [
"vue",
"composition-api",
"router",
"hooks",
"typescript"
],
"author": "Patryk Wałach",
"license": "MIT",
"peerDependencies": {
"vue": ">=3.0.0-alpha.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PatrykWalach/vue-router-dom.git"
},
"devDependencies": {
"@pika/pack": "^0.5.0",
"@pika/plugin-build-deno": "^0.9.2",
"@pika/plugin-build-node": "^0.9.2",
"@pika/plugin-build-web": "^0.9.2",
"@pika/plugin-ts-standard-pkg": "^0.9.2",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.6",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^7.0.0",
"@vue/test-utils": "^2.0.0-beta.8",
"codecov": "^3.8.1",
"eslint": "^7.12.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-vue": "^7.1.0",
"husky": "^4.3.0",
"jest": "^26.6.3",
"lint-staged": "^9.5.0",
"prettier": "^2.1.2",
"ts-jest": "^26.4.3",
"typescript": "^4.0.5",
"vue": "^3.0.0"
},
"dependencies": {
"@types/history": "^4.7.8",
"history": "^5.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": "eslint --cache --fix"
}
}