forked from f/vue-wait
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
61 lines (61 loc) · 1.42 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
{
"name": "vuex-loading",
"description": "Vuex Plugin for Global Loading Management",
"version": "0.1.14",
"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": [
"dist/vuex-loading.js",
"dist/vuex-loading.min.js",
"src",
"LICENSE",
"README.md"
],
"scripts": {
"build": "rollup --environment NODE_ENV:production -c build/rollup.config.js && uglifyjs dist/vuex-loading.js --comments -o dist/vuex-loading.min.js",
"test": "exit 0;",
"precommit": "lint-staged"
},
"lint-staged": {
"src/**/*.js": [
"prettier --single-quote --write",
"git add"
],
"example/**/*.js": [
"prettier --single-quote --write",
"git add"
]
},
"devDependencies": {
"babel-preset-env": "^1.6.0",
"eslint": "^4.2.0",
"husky": "^0.14.3",
"lint-staged": "^4.0.1",
"prettier": "^1.1.0",
"rollup": "^0.45.1",
"rollup-plugin-buble": "^0.15.0",
"uglify-js": "^3.0.24",
"vue": "^2.0.0",
"vuex": "^2.0.0"
},
"peerDependencies": {
"vue": "^2.0.0",
"vuex": "^2.0.0"
}
}