-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.62 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
{
"name": "vue-last-modal",
"version": "1.3.14",
"description": "Minimalistic promise-based, programmatically-opening & stacking modal plugin for Vue 2",
"author": "Matus Duchon",
"scripts": {
"serve": "vue-cli-service serve",
"prepublishOnly": "yarn build",
"build": "vue-cli-service build --target lib --name last-modal src/vue-last-modal.ts",
"lint": "vue-cli-service lint"
},
"main": "dist/last-modal.umd.min.js",
"files": [
"dist/",
"types/",
"src/"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"@vue/cli-plugin-babel": "^4.5.13",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-typescript": "^4.5.13",
"@vue/cli-service": "^4.5.12",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^7.0.0",
"autoprefixer": "^9.8.6",
"eslint": "^6.7.2",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-vue": "^6.2.2",
"postcss": "^8.2.10",
"postcss-nested": "^4.2.3",
"prettier": "^2.2.1",
"typescript": "~4.1.5",
"vue-template-compiler": "^2.6.12"
},
"peerDependencies": {
"vue": "^2.6.12"
},
"bugs": {
"url": "https://github.com/greegus/vue-last-modal/issues"
},
"homepage": "https://github.com/greegus/vue-last-modal#readme",
"keywords": [
"vue",
"modal",
"plugin",
"vuejs",
"dialog",
"stacking",
"promise",
"component",
"web"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/greegus/vue-last-modal.git"
},
"types": "types/index.d.ts"
}