forked from f/vue-wait
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.59 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
{
"name": "vuex-loading",
"description": "Vuex Plugin for Global Loading Management",
"version": "0.2.6",
"license": "MIT",
"author": "Fatih Kadir Akın <[email protected]>",
"keywords": [
"vue",
"vuex",
"plugin",
"loading",
"loader"
],
"homepage": "https://github.com/f/vuex-loading#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/f/vuex-loading.git"
},
"bugs": {
"url": "https://github.com/f/vuex-loading/issues"
},
"main": "dist/vuex-loading.js",
"files": [
"src",
"LICENSE",
"README.md"
],
"scripts": {
"test": "exit 0;",
"precommit": "lint-staged",
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules",
"dev-vuex": "poi examples/vuex-example/index.js",
"dev-default": "poi examples/default-example/index.js"
},
"lint-staged": {
"src/**/*.js": [
"prettier --single-quote --write",
"git add"
],
"examples/**/*.js": [
"prettier --single-quote --write",
"git add"
]
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"cross-env": "^5.1.3",
"eslint": "^4.2.0",
"husky": "^0.14.3",
"lint-staged": "^4.0.1",
"poi": "^9.5.4",
"prettier": "^1.1.0",
"vue": "^2.0.0",
"vue-html-loader": "^1.2.4",
"vue-loader": "^13.7.0",
"vuex": "^3.0.1",
"webpack": "^3.10.0"
},
"peerDependencies": {
"vue": "^2.0.0"
},
"dependencies": {}
}