-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
69 lines (69 loc) · 1.99 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
{
"name": "@kouts/vue-modal",
"description": "A modal window component for Vue 3",
"version": "0.0.0-semantic-release",
"author": "Giannis Koutsaftakis",
"license": "MIT",
"repository": "https://github.com/kouts/vue-modal",
"keywords": [
"vue",
"component",
"modal",
"popup"
],
"main": "./dist/vue-modal.umd.js",
"module": "./dist/vue-modal.es.js",
"unpkg": "dist/vue-modal.umd.js",
"scripts": {
"dev": "vite",
"serve": "vite preview",
"build": "vite build",
"test:unit": "jest",
"test:unit-coverage": "jest --coverage && make-coverage-badge",
"lint": "eslint . --ext .js,.vue",
"lint-fix": "eslint . --fix --ext .js,.vue",
"prepare": "husky",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs"
},
"dependencies": {
"vue": "^3.4.27"
},
"devDependencies": {
"@babel/core": "^7.24.5",
"@babel/preset-env": "^7.24.5",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@kouts/eslint-config": "^0.0.14",
"@vitejs/plugin-vue": "^5.0.4",
"@vue/compiler-sfc": "^3.4.27",
"@vue/test-utils": "^2.4.6",
"@vue/vue3-jest": "^29.2.6",
"@vuepress/bundler-webpack": "^2.0.0-rc.9",
"@vuepress/client": "2.0.0-rc.9",
"@vuepress/plugin-docsearch": "2.0.0-rc.28",
"@vuepress/theme-default": "^2.0.0-rc.28",
"animate.css": "^4.1.1",
"babel-jest": "^29.7.0",
"body-scroll-freezer": "^1.0.5",
"bootstrap": "^4.6.2",
"core-js": "^3.37.0",
"eslint": "^8.42.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.2",
"make-coverage-badge": "^1.2.0",
"prettier": "3.2.5",
"raw-loader": "^4.0.2",
"sass": "~1.64.2",
"sass-loader": "^14.2.1",
"vite": "^5.2.11",
"vite-plugin-html": "^3.2.2",
"vue-router": "^4.3.2",
"vuepress": "^2.0.0-rc.9",
"vuepress-plugin-vue-example": "^2.0.8",
"vuepress-webpack": "2.0.0-rc.0",
"vuex": "^4.1.0"
}
}