-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
91 lines (91 loc) · 1.83 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
{
"name": "click-confirm",
"description": "Prompt user to confirm button click event before allowing the event to proceed.",
"author": {
"name": "Greg Peden",
"email": "[email protected]",
"url": "https://github.com/SirLamer"
},
"version": "2.2.0",
"main": "dist/click-confirm.common.js",
"license": "MIT",
"bugs": {
"url": "https://github.com/SirLamer/click-confirm/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SirLamer/click-confirm.git"
},
"scripts": {
"test": "echo 'no tests!' && npm run lint",
"prepublish": "npm run build",
"lint": "xo",
"build": "bili",
"build:example": "poi build",
"dev": "poi",
"deploy": "npm run build:example && gh-pages -d example/dist"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"Bootstrap",
"Bootstrap4",
"Web",
"Components",
"Vue",
"VueJS",
"Vue2",
"Popover",
"CSS"
],
"peerDependencies": {
"bootstrap-vue": ">= 1.2.0 <= 2",
"vue": ">= 2.5.0 < 3"
},
"devDependencies": {
"bili": "^0.18.2",
"bootstrap-vue": "^2.0.0-rc.11",
"eslint-config-rem": "^3.0.0",
"gh-pages": "^1.0.0",
"poi": "^9.5.0",
"rollup-plugin-vue": "^2.5.2",
"vue": "^2.5.3",
"vue-template-compiler": "^2.5.3",
"xo": "^0.18.0"
},
"unpkg": "dist/click-confirm",
"poi": {
"entry": "dev/main.js",
"dist": "docs",
"homepage": "/click-confirm/",
"html": {
"template": "dev/docs/index.html"
}
},
"files": [
"dist"
],
"xo": {
"extends": "rem/prettier",
"ignores": [
"dev/**"
]
},
"bili": {
"format": [
"cjs",
"umd",
"es"
],
"plugins": [
"vue"
],
"external": [
"bootstrap-vue",
"vue"
],
"exports": "named",
"compress": true
}
}