-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
61 lines (61 loc) · 1.46 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": "@mahdikhashan/vue3-click-outside",
"description": "A Vue.js 3 click outside custom directive",
"version": "0.1.2",
"main": "lib/index.js",
"scripts": {
"start": "babel-node src",
"build": "rimraf lib && babel src -d lib --ignore src/__tests__",
"test": "jest --watch"
},
"devDependencies": {
"@babel/preset-env": "^7.21.4",
"@vue/test-utils": "^2.3.2",
"@vue/vue3-jest": "^28.1.0",
"babel-cli": "^6.26.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^28.1.3",
"babel-preset-env": "^1.7.0",
"jest": "^28.1.3",
"jest-environment-jsdom": "^29.5.0",
"rimraf": "^3.0.2",
"vue": "^3.2.47"
},
"peerDependencies": {
"vue": "3.x.x"
},
"homepage": "https://github.com/mahdikhashan/vue3-click-outside#readme",
"repository": {
"type": "git",
"url": "https://github.com/mahdikhashan/vue3-click-outside"
},
"bugs": {
"url": "https://github.com/mahdikhashan/vue3-click-outside/issues",
"email": "mahdikhashan1@gmail.com"
},
"keywords": [
"vue",
"vue3",
"directive",
"click-out-side"
],
"author": "Mahdi Khashan",
"license": "MIT",
"jest": {
"verbose": true,
"moduleFileExtensions": ["js","vue"],
"testEnvironmentOptions": {
"customExportConditions": [
"node",
"node-addons"
]
},
"transform": {
"^.+\\.js$": "babel-jest",
"^.+\\.vue$": "@vue/vue3-jest"
}
},
"dependencies": {
"vue": "3.x.x"
}
}