-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.71 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
94
95
96
{
"name": "vue-waiting",
"description": "Vue Plugin for Global Loader Management",
"version": "0.0.10",
"license": "MIT",
"author": {
"name": "Chantouch Sek",
"email": "chantouchsek.cs83@gmail.com",
"url": "https://chantouch.me"
},
"keywords": [
"vue",
"vuex",
"nuxt",
"plugin",
"loading",
"loader",
"vue waiting",
"vue wait"
],
"homepage": "https://github.com/chantouch/vue-waiting#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/chantouch/vue-waiting.git"
},
"bugs": {
"url": "https://github.com/chantouch/vue-waiting/issues"
},
"main": "dist/vue-waiting.js",
"types": "types/index.d.ts",
"files": [
"dist",
"src",
"nuxt",
"types"
],
"scripts": {
"test": "exit 0;",
"vue:dev": "poi examples/vue-example --serve",
"vuex:dev": "poi examples/vuex-example --serve",
"wrap:dev": "poi examples/wrap-example --serve",
"transition:dev": "poi examples/transition-example --serve",
"build": "npx webpack --env prod --env min",
"analyze": "npx webpack --analyze",
"dev:transition": "poi examples/transition-example --prod",
"dev:vuex": "poi examples/vuex-example --prod",
"dev:vue": "poi examples/vue-example --prod",
"dev:wrap": "poi examples/wrap-example --prod",
"build-gh-pages": "poi build --out-dir=/tmp/gh-pages examples/vuex-example/index.js",
"prepublish": "npm run build",
"prepare": "husky install",
"release": "standard-version && git push --follow-tags origin main && yarn publish"
},
"lint-staged": {
"src/**/*.js": [
"prettier --single-quote --write"
],
"examples/**/*.js": [
"prettier --single-quote --write"
]
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@vue/compiler-sfc": "^3.2.4",
"babel-loader": "^8.2.2",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"epic-spinners": "^1.1.0",
"escape-string-regexp": "^5.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^3.4.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.0",
"poi": "^12.10.3",
"prettier": "^2.6.2",
"standard-version": "^9.5.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"vue": "^2.6.14",
"vue-html-loader": "^1.2.4",
"vue-loader": "^15.9.8",
"vue-style-loader": "^4.1.3",
"vue-template-compiler": "^2.6.14",
"vuex": "^3.6.2",
"webpack": "^5.73.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.8.0"
},
"peerDependencies": {
"vue": "^2.6.14"
}
}