-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.16 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
{
"name": "nuxt-vuex-router-sync",
"version": "0.0.3",
"description": "vuex-router-sync integration for Nuxt",
"license": "MIT",
"contributors": [
{
"name": "Paul Gascou-Vaillancourt (@paulgv)"
}
],
"main": "lib/module.js",
"repository": "https://github.com/paulgv/nuxt-vuex-router-sync",
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint lib test",
"test": "jest",
"release": "standard-version && git push --follow-tags && npm publish"
},
"eslintIgnore": [
"lib/templates/*.*"
],
"files": [
"lib"
],
"jest": {
"testEnvironment": "node",
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"collectCoverageFrom": [
"lib",
"test"
]
},
"dependencies": {
"vuex-router-sync": "^5.0.0"
},
"devDependencies": {
"eslint": "6.8.0",
"eslint-config-standard": "14.1.0",
"eslint-plugin-import": "2.20.1",
"eslint-plugin-jest": "23.8.0",
"eslint-plugin-node": "11.0.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.1",
"eslint-plugin-vue": "6.2.1",
"jest": "25.1.0",
"nuxt": "2.11.0"
}
}