This repository has been archived by the owner on Jan 18, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 2.05 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
{
"name": "vue-route-props",
"version": "2.0.0",
"engines": {
"node": ">=10"
},
"description": "Automatically bind vue-router query to vm, APIs are mostly same as the Vue props.",
"main": "dist/vue-route-props.common.min.js",
"module": "dist/vue-route-props.esm.min.js",
"unpkg": "dist/vue-route-props.min.js",
"jsdelivr": "dist/vue-route-props.min.js",
"files": [
"dist"
],
"keywords": [
"vue",
"vue-router",
"props",
"query",
"validation"
],
"scripts": {
"clean": "rimraf dist",
"build": "node scripts/build.js",
"test": "jest --clear-cache && jest",
"test:coverage": "rimraf coverage && yarn run test --coverage --coverage-directory coverage --coverage-reporters lcov --coverage-path-ignore-patterns dist",
"test:watch": "yarn run test --watch-all",
"pre-publish": "node scripts/publish.js",
"lint": "prettier . --check"
},
"jest": {
"transform": {
"^.+\\.(t|j)sx?$": "babel-jest"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/iendeavor/vue-route-props.git"
},
"bugs": {
"url": "https://github.com/iendeavor/vue-route-props/issues"
},
"homepage": "https://github.com/iendeavor/vue-route-props#readme",
"author": "Ernest <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/runtime": "^7.12.1",
"@vue/server-test-utils": "^1.1.0",
"@vue/test-utils": "^1.1.0",
"babel-jest": "^26.6.1",
"husky": "^4.3.0",
"jest": "^26.6.1",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"rollup": "^2.32.1",
"rollup-plugin-terser": "^7.0.2",
"shelljs": "^0.8.4",
"vue": "^2.6.12",
"vue-router": "^3.4.8",
"vue-server-renderer": "^2.6.12",
"vue-template-compiler": "^2.6.12"
},
"peerDependencies": {
"vue": "^2.6.12",
"vue-router": "^3.4.8"
},
"husky": {
"hooks": {
"pre-push": "git diff --exit-code && git diff --staged --exit-code && yarn lint && yarn test"
}
}
}