-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.27 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
{
"name": "redux-first-vue-routing",
"version": "1.3.0",
"description": "Keep your Vue Router state in your Redux store",
"keywords": [
"redux",
"vue",
"vue-router"
],
"files": [
"dist/",
"src/",
"!**/*.spec.js"
],
"main": "src/index.js",
"module": "src/index.js",
"scripts": {
"build": "webpack",
"commit": "pnpx git-cz",
"lint": "eslint './src/**/*.js'",
"test": "jest",
"tdd": "jest --watch"
},
"author": "[email protected]",
"repository": "https://github.com/kaidjohnson/redux-first-vue-routing",
"homepage": "https://github.com/kaidjohnson/redux-first-vue-routing/blob/master/README.md",
"bugs": "https://github.com/kaidjohnson/redux-first-vue-routing/issues",
"license": "MIT",
"devDependencies": {
"@babel/core": "7.12.10",
"@babel/preset-env": "7.12.10",
"@vue/test-utils": "1.1.0",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "26.5.2",
"babel-loader": "8.1.0",
"eslint": "7.11.0",
"eslint-plugin-jest": "24.1.0",
"jest": "26.5.3",
"redux": "4.0.5",
"vue": "2.6.12",
"vue-router": "3.4.6",
"vue-template-compiler": "2.6.12",
"webpack": "5.1.1",
"webpack-cli": "4.0.0"
},
"peerDependencies": {
"redux": "4.x",
"vue-router": "3.x"
}
}