-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
48 lines (48 loc) · 1.06 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
{
"name": "vue-simple-alert",
"version": "1.1.1",
"description": "Simple alert(), confirm(), prompt() for Vue.js, using sweetalert2.",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"dev": "tsc -w",
"build": "tsc"
},
"dependencies": {
"sweetalert2": "^8.18.6"
},
"peerDependencies": {
"vue": "2.x"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "2.6.0",
"@typescript-eslint/parser": "2.6.0",
"eslint": "6.6.0",
"eslint-config-prettier": "6.5.0",
"eslint-plugin-prettier": "3.1.1",
"prettier": "1.18.2",
"typescript": "^3.6.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/constkhi/vue-simple-alert.git"
},
"keywords": [
"alert",
"confirm",
"prompt",
"dialog",
"simple",
"sweetalert2",
"vue"
],
"author": "constkhi",
"license": "MIT",
"bugs": {
"url": "https://github.com/constkhi/vue-simple-alert/issues"
},
"homepage": "https://github.com/constkhi/vue-simple-alert#readme",
"files": [
"/lib"
]
}