-
Notifications
You must be signed in to change notification settings - Fork 125
/
package.json
65 lines (65 loc) · 1.84 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
{
"name": "vuex-router-sync",
"version": "5.0.0",
"description": "Effortlessly keep vue-router and vuex store in sync.",
"main": "dist/vuex-router-sync.js",
"browser": "dist/vuex-router-sync.esm-browser.js",
"module": "dist/vuex-router-sync.esm-bundler.js",
"unpkg": "dist/vuex-router-sync.global.js",
"jsdelivr": "dist/vuex-router-sync.global.js",
"typings": "dist/src/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "node scripts/build.js",
"lint": "prettier --check --write --parser typescript \"{src,test}/**/*.ts\"",
"lint:fail": "prettier --check --parser typescript \"{src,test}/**/*.ts\"",
"test": "jest",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"release": "node scripts/release.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vuejs/vuex-router-sync.git"
},
"keywords": [
"vuex",
"vue-router",
"vue"
],
"author": "Evan You",
"license": "MIT",
"bugs": {
"url": "https://github.com/vuejs/vuex-router-sync/issues"
},
"homepage": "https://github.com/vuejs/vuex-router-sync#readme",
"peerDependencies": {
"vue-router": "^3.0.0",
"vuex": "^3.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.1.1",
"@types/jest": "^26.0.20",
"brotli": "^1.3.2",
"buble": "^0.20.0",
"chalk": "^4.1.0",
"conventional-changelog-cli": "^2.1.1",
"enquirer": "^2.3.6",
"execa": "^5.0.0",
"fs-extra": "^9.1.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"rollup": "^2.38.4",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"semver": "^7.3.4",
"ts-jest": "^26.5.0",
"tslib": "^2.1.0",
"typescript": "3.9.7",
"vue": "^2.6.12",
"vue-router": "^3.5.1",
"vuex": "^3.6.2"
}
}