-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 975 Bytes
/
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
{
"name": "on-outside-click-hook",
"version": "0.0.2",
"description": "A React custom hook to detect clicks which triggers outside the element and then fire an event.",
"main": "libs/main.js",
"repository": {
"type": "git",
"url": "https://github.com/zestgeek/on-outside-click-hook"
},
"author": "Manoj Singh Negi",
"license": "MIT",
"keywords": [
"hooks",
"react hooks",
"OnOutsideClick",
"reactjs",
"outside click",
"on-outside-click-hook"
],
"scripts": {
"build": "./node_modules/.bin/babel src --out-file libs/main.js",
"prepublish": "yarn build"
},
"bugs": {
"url": "https://github.com/zestgeek/on-outside-click-hook/issues"
},
"peerDependencies": {
"react": "^16.8.1",
"react-dom": "^16.8.1"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0"
}
}