forked from PatrissolJuns/react-click-outside
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.52 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.52 KB
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
{
"name": "@patrissoljuns/react-click-outside",
"version": "1.0.1",
"description": "A React component and hook to handle clicks outside a specified element, useful for closing dropdowns, modals, and more.",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc --outDir dist",
"test": "jest",
"coverage": "jest --coverage && codecov",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/PatrissolJuns/react-click-outside.git"
},
"keywords": [
"react",
"click",
"outside",
"click-away",
"listener",
"hook",
"component",
"dropdown",
"modal"
],
"author": "Patrissol KENFACK <patrissolkenfack@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/PatrissolJuns/react-click-outside/issues"
},
"homepage": "https://github.com/PatrissolJuns/react-click-outside#readme",
"peerDependencies": {
"react": "^17.0.0"
},
"devDependencies": {
"@babel/core": "^7.21.3",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^12.1.5",
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "^29.4.2",
"babel-jest": "^29.5.0",
"codecov": "^3.8.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"typescript": "^4.0.0"
}
}