-
-
Notifications
You must be signed in to change notification settings - Fork 100
/
package.json
79 lines (79 loc) · 2.1 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
{
"name": "vue-wait",
"description": "Vue Plugin for Global Loading Management",
"version": "1.5.3",
"license": "MIT",
"author": "Fatih Kadir Akın <fatihkadirakin@gmail.com>",
"keywords": [
"vue",
"vuex",
"nuxt",
"plugin",
"loading",
"loader"
],
"homepage": "https://github.com/f/vue-wait#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/f/vue-wait.git"
},
"bugs": {
"url": "https://github.com/f/vue-wait/issues"
},
"main": "index.js",
"types": "src/types/index.d.ts",
"files": [
"dist",
"src",
"nuxt"
],
"scripts": {
"test": "exit 0;",
"precommit": "lint-staged",
"build": "cross-env NODE_ENV=production webpack --config webpack.config.js",
"bundle": "npm run build; npm run build -- --env=v3",
"dev-transition": "poi examples/transition-example/index.js",
"dev-vuex": "poi examples/vuex-example/index.js",
"dev-vue": "poi examples/vue-example/index.js",
"dev-wrap": "poi examples/wrap-example/index.js",
"build-gh-pages": "poi build --out-dir=/tmp/gh-pages examples/vuex-example/index.js"
},
"lint-staged": {
"src/**/*.js": [
"prettier --single-quote --write",
"git add"
],
"examples/**/*.js": [
"prettier --single-quote --write",
"git add"
]
},
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.8",
"@vue/compiler-sfc": "^3.1.5",
"babel-loader": "^8.2.2",
"cross-env": "^5.1.3",
"css-loader": "^0.28.11",
"epic-spinners": "^1.0.3",
"escape-string-regexp": "^1.0.5",
"eslint": "^4.2.0",
"husky": "^0.14.3",
"lint-staged": "^7.1.3",
"poi": "^10.2.3",
"prettier": "^1.1.0",
"uglifyjs-webpack-plugin": "^1.2.5",
"vue-html-loader": "^1.2.4",
"vue-loader": "^16.3.3",
"vue-loader-old": "npm:vue-loader@^15.9.6",
"vue-style-loader": "^4.1.3",
"vue-template-compiler": "^2.6.14",
"vuex": "^3.6.2",
"webpack": "^5.47.0",
"webpack-cli": "^4.7.2"
},
"peerDependencies": {
"vue": "^2.5.16"
}
}