forked from andymark-by/click-outside-vue3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.81 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
{
"name": "click-outside-vue3",
"version": "4.0.1",
"description": "Vue 3 directive to react on clicks outside an element",
"main": "dist/v-click-outside.umd.js",
"umd:main": "dist/v-click-outside.umd.js",
"source": "src/index.js",
"scripts": {
"test": "jest --coverage",
"test:watch": "jest --colors --watch",
"coverage": "open coverage/lcov-report/index.html",
"build": "microbundle --entry src/index.js --target browser --format umd --name v-click-outside",
"lint": "eslint . --ext .js",
"format": "prettier --write '**/*.{js,json,md}'",
"format:changed": "pretty-quick",
"format:staged": "pretty-quick --staged",
"release": "np",
"version": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andymark-by/click-outside-vue3.git"
},
"author": "ndelvalle <nicolas.delvalle@gmail.com>",
"keywords": [
"vue3",
"click outside",
"click"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/andymark-by/click-outside-vue3/issues"
},
"homepage": "https://github.com/andymark-by/click-outside-vue3#readme",
"devDependencies": {
"@babel/preset-env": "^7.11.0",
"babel-core": "^6.26.3",
"babel-jest": "^26.3.0",
"babel-preset-es2015": "^6.24.1",
"eslint": "^7.7.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"jest": "^26.4.2",
"jest-cli": "^26.4.2",
"lodash": "^4.17.20",
"microbundle": "^0.13.0",
"np": "^7.2.0",
"prettier": "^2.1.1",
"pretty-quick": "^3.0.0"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**"
],
"roots": [
"test/"
]
},
"engines": {
"node": ">=6"
}
}