-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.49 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
{
"name": "vue-loadable",
"version": "0.2.0",
"description": "Improves your loading state flow by providing methods and helpers to manage it.",
"cdn": "dist/vue-loadable.umd.js",
"types": "types/vue-loadable.d.ts",
"main": "dist/vue-loadable.js",
"unpkg": "dist/vue-loadable.umd.js",
"module": "dist/vue-loadable.esm.js",
"jsdelivr": "dist/vue-loadable.umd.js",
"umd:main": "dist/vue-loadable.umd.js",
"files": [
"dist/",
"types/"
],
"scripts": {
"build": "bili",
"test": "ava",
"serve": "poi --serve example/main.js",
"prepare": "yarn test && yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VitorLuizC/vue-loadable.git"
},
"keywords": [
"vue",
"vue-mixin",
"loadable",
"load",
"vue-loadable"
],
"author": {
"url": "https://vitorluizc.github.io/",
"name": "Vitor Cavalcanti",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/VitorLuizC/vue-loadable/issues"
},
"homepage": "https://github.com/VitorLuizC/vue-loadable#readme",
"devDependencies": {
"ava": "^2.4.0",
"bili": "^4.8.1",
"poi": "^12.7.3",
"rollup-plugin-typescript2": "^0.24.3",
"ts-node": "^8.4.1",
"typescript": "^3.6.4",
"vue": "^2.6.10",
"vue-template-compiler": "^2.6.10",
"vuex": "^3.1.1"
},
"ava": {
"require": [
"ts-node/register"
],
"extensions": [
"ts"
],
"compileEnhancements": false
}
}