-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
93 lines (93 loc) · 2.24 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
86
87
88
89
90
91
92
93
{
"name": "vuex-shared-mutations",
"version": "1.0.2",
"description": "Share vuex mutations across tabs via localStorage",
"main": "dist/vuex-shared-mutations.js",
"scripts": {
"test": "karma start --single-run",
"build": "webpack --mode production",
"lint": "eslint src && pretty-quick --staged",
"ci": "npm run build && karma start --single-run"
},
"files": [
"dist/vuex-shared-mutations.js",
"dist/vuex-shared-mutations.js.map",
"src",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/xanf/vuex-shared-mutations.git"
},
"keywords": [
"vue",
"vuex",
"plugin"
],
"author": "Illya Klymov <xanf@xanf.me>",
"license": "MIT",
"bugs": {
"url": "https://github.com/xanf/vuex-shared-mutations/issues"
},
"eslintConfig": {
"root": true,
"extends": [
"airbnb-base",
"prettier"
],
"env": {
"browser": true
},
"overrides": [
{
"files": [
"*.test.js"
],
"env": {
"mocha": true
},
"rules": {
"no-unused-expressions": 0
}
}
]
},
"husky": {
"hooks": "npm run lint"
},
"homepage": "https://github.com/xanf/vuex-shared-mutations#readme",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.3.1",
"babel-loader": "^8.0.5",
"babel-plugin-istanbul": "^5.1.0",
"chai": "^4.2.0",
"core-js": "^2.6.4",
"eslint": "^5.13.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-import": "^2.16.0",
"husky": "^1.3.1",
"karma": "^4.0.0",
"karma-browserstack-launcher": "^1.4.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-mocha": "^1.3.0",
"karma-remap-coverage": "^0.1.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^3.0.5",
"mocha": "^5.2.0",
"prettier": "^1.16.3",
"pretty-quick": "^1.10.0",
"rimraf": "^2.6.3",
"testdouble": "^3.9.3",
"testdouble-chai": "^0.5.0",
"vue": "^2.5.22",
"vuex": "^3.1.0",
"wallaby-webpack": "^3.9.13",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.1"
}
}