forked from posva/vue-router-mock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 2.43 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
{
"name": "vue-router-mock",
"version": "0.1.9",
"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",
"build:dts": "tail -n +2 src/globalExtensions.ts >> dist/index.d.ts",
"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": "npm run lint --write",
"test:types": "tsc --build tsconfig.json",
"test:unit": "jest --coverage",
"test": "npm run test:types && npm run test:unit && npm run build && npm run build:dts"
},
"files": [
"dist/*.cjs",
"dist/*.mjs",
"dist/*.d.ts",
"LICENSE",
"README.md"
],
"keywords": [
"vue",
"router",
"mock",
"spy",
"stub",
"jest",
"test",
"vue-router"
],
"license": "MIT",
"devDependencies": {
"@sucrase/jest-plugin": "^2.2.1",
"@types/jest": "^27.5.2",
"@types/jsdom": "^16.2.15",
"@types/sinon": "^10.0.13",
"@vue/test-utils": "^2.0.2",
"chalk": "^5.0.1",
"conventional-changelog-cli": "^2.2.2",
"enquirer": "^2.3.6",
"execa": "^6.1.0",
"jest": "^27.5.1",
"lint-staged": "^13.0.3",
"minimist": "^1.2.6",
"prettier": "^2.7.1",
"publie": "^0.0.2",
"semver": "^7.3.7",
"sinon": "^14.0.0",
"typescript": "^4.8.2",
"unbuild": "^0.8.9",
"vue": "^3.2.37",
"vue-router": "^4.1.5",
"yorkie": "^2.0.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": [
"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"
}