-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.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
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
{
"name": "vue-click-outside-element",
"author": "ColdHands",
"version": "3.1.2",
"description": "Vue directive for clicking outside element",
"main": "./dist/vue-click-outside-element.umd.js",
"repository": "https://github.com/ColtHands/Vue-Click-Outside-Element.git",
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org",
"git-registry": "https://npm.pkg.github.com/@colthands"
},
"typings": "typings.d.ts",
"keywords": [
"vue",
"vue directive",
"directive",
"click outside element",
"dom",
"vue click",
"v-click-outside",
"vue-click-outside",
"vue click outside",
"vue outside",
"vue click outside element",
"vue click hook",
"vue hook",
"vue click outside hook"
],
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-typescript"
]
},
"jest": {
"preset": "ts-jest",
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"transform": {
".*\\.(js)$": "babel-jest",
".*\\.(vue)$": "vue-jest"
},
"collectCoverage": false,
"collectCoverageFrom": [
"**/*.{js,vue}",
"!**/node_modules/**"
],
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1"
}
},
"scripts": {
"start": "vite build",
"dev": "vite",
"build:prod": "webpack --mode=production --stats-error-details",
"test": "jest --runInBand",
"test:watch": "jest --runInBand --coverage"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/preset-env": "^7.19.3",
"@coldhands/eslint-config": "^2.0.35",
"@types/jest": "^29.1.2",
"@vitejs/plugin-vue": "^3.2.0",
"@vue/runtime-core": "^3.2.45",
"@vue/test-utils": "^2.1.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^26.6.3",
"eslint": "^8.25.0",
"eslint-plugin-jest": "^27.1.2",
"jest": "^26.6.3",
"terser": "^5.15.1",
"ts-jest": "^26.5.5",
"typescript": "^4.8.4",
"vite": "^3.2.2",
"vue": "^3.2.40",
"vue-jest": "^5.0.0-alpha.10",
"vue-template-compiler": "^2.7.10"
}
}