generated from posva/vue-ts-lib
-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
103 lines (103 loc) · 2.48 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "vue-router-mock",
"packageManager": "pnpm@9.9.0",
"version": "1.1.0",
"description": "Easily test your components by mocking the router",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
},
"sideEffects": false,
"author": {
"name": "Eduardo San Martin Morote",
"email": "posva13@gmail.com"
},
"scripts": {
"build": "unbuild",
"release": "publie",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 1",
"lint": "prettier -c --parser typescript \"{src,__tests__,e2e}/**/*.[jt]s?(x)\"",
"lint:fix": "pnpm run lint --write",
"test:types": "tsc --build tsconfig.json",
"test:unit": "vitest",
"test": "pnpm run test:types && pnpm run test:unit run --coverage && pnpm run build",
"prepare": "simple-git-hooks"
},
"files": [
"dist/*.cjs",
"dist/*.mjs",
"dist/*.d.ts",
"LICENSE",
"README.md"
],
"keywords": [
"vue",
"router",
"mock",
"spy",
"stub",
"jest",
"test",
"vue-router"
],
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/sinon": "^17.0.3",
"@vitest/coverage-v8": "^2.0.5",
"@vue/test-utils": "^2.4.6",
"chalk": "^5.3.0",
"conventional-changelog-cli": "^5.0.0",
"enquirer": "^2.4.1",
"execa": "^9.3.1",
"happy-dom": "^15.7.3",
"lint-staged": "^15.2.10",
"minimist": "^1.2.8",
"prettier": "^3.3.3",
"publie": "^0.0.2",
"semver": "^7.6.3",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.5.4",
"unbuild": "^2.0.0",
"vitest": "^2.0.5",
"vue": "^3.4.38",
"vue-router": "^4.4.3"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged",
"commit-msg": "node scripts/verifyCommit.mjs"
},
"lint-staged": {
"*.{js,mjs,json,cjs}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"size-limit": [
{
"path": "size-checks/basic.js",
"ignore": [
"vue",
"@vue/test-utils"
]
}
],
"peerDependencies": {
"vue": "^3.2.23",
"vue-router": "^4.0.12"
},
"repository": {
"type": "git",
"url": "git+https://github.com/posva/vue-router-mock.git"
},
"bugs": {
"url": "https://github.com/posva/vue-router-mock/issues"
},
"homepage": "https://github.com/posva/vue-router-mock#readme"
}