This repository has been archived by the owner on Oct 17, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.74 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
{
"name": "vuex-router",
"version": "1.1.5",
"main": "lib/index.js",
"author": "Chris Jaynes <[email protected]>",
"license": "MIT",
"description": "Moves your app's location state into your Vuex store. Allows super-easy page-based routing with built-in slide transitions.",
"keywords": [
"vue",
"vue.js",
"vuejs",
"vuex",
"router",
"vue-router",
"page component",
"slide transitions"
],
"homepage": "https://github.com/geekytime/vuex-router",
"bugs": {
"url": "https://github.com/geekytime/vuex-router"
},
"repository": "github:geekytime/vuex-router",
"scripts": {
"build": "webpack",
"dev": "webpack-dev-server --config webpack.config.test.js",
"lint": "eslint --ignore-path .gitignore .",
"prepublishOnly": "yarn build",
"test": "webpack --config webpack.config.test.js"
},
"devDependencies": {
"@vue/test-utils": "^1.0.0-beta.13",
"avoriaz": "^6.3.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-plugin-vue": "^4.4.0",
"less": "^3.0.1",
"less-loader": "^4.1.0",
"style-loader": "^0.20.3",
"tape": "^4.9.0",
"vue": "2.x",
"vue-loader": "^14.2.2",
"vue-template-compiler": "^2.5.16",
"vuex": "3.x",
"webpack": "^4.3.0",
"webpack-cli": "^2.0.13",
"webpack-dev-server": "^3.1.1",
"webpack-tape-run": "^0.0.7"
},
"peerDependencies": {
"vue": "2.x",
"vuex": "3.x"
},
"dependencies": {
"history": "^4.7.2",
"regenerator-runtime": "^0.11.1",
"universal-router": "^6.0.0"
}
}