-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
68 lines (68 loc) · 1.83 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
{
"name": "vue-router-mp",
"version": "0.2.4",
"description": "mpvue 中使用的 vue-router 兼容路由,兼容大部分 vue-router API,含导航守卫、命名路由等",
"keywords": [
"mpvue",
"vue",
"vuejs",
"router",
"route",
"routes",
"miniprogram",
"wx",
"weapp",
"wxapp",
"wechat",
"hook",
"interceptor",
"beforeEach",
"afterEach"
],
"repository": {
"type": "git",
"url": "https://github.com/Cweili/vue-router-mp.git"
},
"author": "Cweili",
"license": "MIT",
"homepage": "https://cweili.gitee.io/vue-router-mp/",
"bugs": {
"url": "https://github.com/Cweili/vue-router-mp/issues"
},
"main": "dist/vue-router-mp.cjs.js",
"module": "dist/vue-router-mp.esm.js",
"unpkg": "dist/vue-router-mp.js",
"jsdelivr": "dist/vue-router-mp.js",
"sideEffects": false,
"scripts": {
"postbuild": "eslint --fix *.js src",
"build": "rollup -c",
"test": "jest test --coverage",
"changelog": "conventional-changelog -p vue-router-mp -i CHANGELOG.md -s",
"docs": "vuepress dev docs",
"docs:build": "vuepress build docs"
},
"dependencies": {
"async-throttle-cache": "^1.1.2",
"object-equal": "^1.0.0",
"querystringify": "^2.1.0"
},
"devDependencies": {
"@babel/core": "^7.3.3",
"@babel/preset-env": "^7.3.1",
"@vuepress/theme-default": "^1.0.0-alpha.39",
"babel-eslint": "^10.0.1",
"conventional-changelog-cli": "^4.0.0",
"eslint": "^7.4.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-node": "^0.3.2",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jest": "^27.2.2",
"jest": "^29.5.0",
"rollup": "^2.9.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-node-resolve": "^5.0.0",
"vuepress": "^1.2.0"
}
}