-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.11 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": "@stfalcon/vuex-loading-plugin",
"version": "2.1.0",
"description": "Lightweight plugin for handle loading before and after action request",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/stfalcon-studio/stfalcon-vuex-loading-plugin.git"
},
"keywords": [
"vue",
"vuex",
"plugin",
"executing",
"loading"
],
"author": "Illia Osmanov <illia.osmanov@gmail.com> (https://stfalcon.com)",
"license": "MIT",
"homepage": "https://github.com/stfalcon-studio/stfalcon-vuex-loading-plugin#readme",
"peerDependencies": {
"vuex": "^3.1.1"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {
"no-console": "off"
},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"dependencies": {
"lodash.memoize": "4.1.2",
"lodash.merge": "^4.6.2"
}
}