-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 886 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 886 Bytes
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": "react-global-key-down-hook",
"version": "0.2.1",
"description": "React Hook to window keydown",
"author": "jonmaciel",
"license": "MIT",
"repository": "jonmaciel/react-global-key-down-hook",
"main": "dist/index.js",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"build": "rollup -c",
"start": "rollup -c -w"
},
"peerDependencies": {
"react": ">= 16.8.0 < 2"
},
"devDependencies": {
"@types/react": "latest",
"babel-core": "latest",
"babel-runtime": "latest",
"react": "latest",
"rollup": "latest",
"rollup-plugin-typescript2": "latest",
"typescript": "latest"
},
"files": [
"dist"
],
"keywords": [
"react",
"typescript",
"npm",
"keypress",
"hook",
"hooks",
"global keypress",
"keydown",
"bind key",
"global keydown",
"global"
]
}