-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
85 lines (85 loc) · 2.78 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
{
"name": "vue-router-lite",
"version": "1.3.0",
"description": "> `vue-router-lite` is a component-based router for Vue.js.",
"main": "dist/vue-router-lite.js",
"module": "dist/vue-router-lite.module.js",
"unpkg": "dist/vue-router-lite.umd.js",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-object-rest-spread": "^7.9.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.9.5",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@rollup/plugin-replace": "^2.3.1",
"@vue/test-utils": "^1.0.0-beta.33",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.3.0",
"babel-loader": "^8.1.0",
"cross-env": "^7.0.2",
"css-loader": "^3.5.2",
"ejs-loader": "^0.3.6",
"eslint": "6.8.0",
"eslint-config-airbnb": "18.1.0",
"eslint-config-airbnb-base": "14.1.0",
"eslint-config-prettier": "6.10.1",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-babel": "5.3.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-vue": "6.2.2",
"prettier": "2.0.4",
"express": "^4.17.1",
"express-urlrewrite": "^1.2.0",
"extract-loader": "^5.0.1",
"fs-extra": "^9.0.0",
"html-loader": "^1.1.0",
"html-webpack-plugin": "^4.2.0",
"jest": "^25.3.0",
"jest-environment-jsdom": "^25.3.0",
"jest-environment-jsdom-global": "^2.0.2",
"jest-serializer-vue": "^2.0.2",
"mini-css-extract-plugin": "^0.9.0",
"rollup": "^2.6.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-filesize": "^7.0.0",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-vue": "^5.1.6",
"typescript": "^3.8.3",
"vue": "^2.6.11",
"vue-jest": "^3.0.5",
"vue-loader": "^15.9.1",
"vue-template-compiler": "^2.6.11",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-middleware": "^3.7.2"
},
"scripts": {
"build": "node build/build.js",
"examples": "cross-env NODE_ENV=development node examples/server.js",
"examples:build": "cross-env NODE_ENV=production webpack --config examples/webpack.config.js",
"docs": "cd docs && npm run docs",
"docs:build": "cd docs && npm run docs:build",
"test": "jest",
"install-cn": "npm i --chromedriver_cdnurl=https://npm.taobao.org/mirrors/chromedriver"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ccqgithub/vue-router-lite.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/ccqgithub/vue-router-lite/issues"
},
"homepage": "https://github.com/ccqgithub/vue-router-lite#readme",
"dependencies": {
"history": "^4.10.1",
"path-to-regexp": "^6.1.0"
},
"peerDependencies": {
"vue": "^2.6.0"
}
}