-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.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
{
"name": "use-click-away",
"version": "0.0.1",
"description": "React hook that triggers a callback when user clicks outside the element.",
"author": {
"name": "George Bardi",
"email": "[email protected]",
"url": "https://twitter.com/geobde"
},
"keywords": [
"react",
"hooks",
"react-hooks",
"click outside",
"onclickoutside",
"click",
"domout",
"document",
"browser",
"callback"
],
"main": "index.js",
"scripts": {
"build": "babel src --out-dir .",
"bump": "npm version",
"example": "cd example && yarn install && yarn package",
"prepublishOnly": "yarn build",
"watch": "nodemon --watch src --exec \"yarn build\""
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"nodemon": "^2.0.2"
},
"repository": {
"type": "git",
"url": "https://github.com/geobde/use-click-away"
},
"bugs": {
"url": "https://github.com/geobde/use-click-away/issues"
}
}