-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.47 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
{
"name": "@donnikitos/react-clickaway",
"version": "1.0.0",
"description": "ReactJS utilities to to listen for click-away-events",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build": "npx tsc --build",
"clean": "rm -f index.js && rm -f index.d.ts",
"prepack": "npm run clean && npm run build",
"prettify": "npx pretty-quick --staged",
"lintify": "npx eslint src/**/*.{ts,tsx,json} --no-error-on-unmatched-pattern --fix"
},
"pre-commit": [
"prettify",
"lintify"
],
"keywords": [
"React.js",
"click-away",
"clickAway",
"listener",
"event",
"click-away-event",
"onClickAway",
"hook",
"HOC",
"useClickAwayListener",
"useClickAway",
"ClickAwayListener",
"ES6",
"CommonJS"
],
"author": "Nikita 'donnikitos' Nitichevski <me@donnikitos.com> (https://donnikitos.com)",
"license": "MIT",
"devDependencies": {
"react": "^17.0.1",
"@types/react": "^17.0.2",
"typescript": "^4.4.2",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"eslint": "^7.31.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.1",
"pre-commit": "^1.2.2"
},
"homepage": "https://github.com/donnikitos/react-clickAway#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/donnikitos/react-clickAway.git"
},
"bugs": {
"url": "https://github.com/donnikitos/react-clickAway/issues"
}
}