-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 1.89 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
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "use-keyboard-shortcuts",
"version": "2.2.3",
"description": "React hook to attach keyboard shortcuts to the document",
"author": "SAITS",
"license": "MIT",
"repository": "SAITS/use-keyboard-shortcuts",
"keywords": [
"react",
"hook",
"hooks",
"shortcut",
"shortcuts",
"keyboard",
"hotkey",
"hotkeys",
"react-hooks"
],
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"test": "cross-env CI=1 react-scripts-ts test --env=jsdom",
"test:watch": "react-scripts-ts test --env=jsdom",
"build": "rollup -c",
"start": "rollup -c -w",
"prepare": "tsc --declaration && yarn run build",
"predeploy": "cd example && yarn install && yarn run build"
},
"peerDependencies": {
"react": "^16.8.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^4.1.2",
"@testing-library/react": "^9.3.0",
"@types/jest": "^24.0.19",
"@types/node": "^12.11.6",
"@types/react": "^16.9.10",
"@typescript-eslint/parser": "^2.5.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.3",
"babel-runtime": "^6.26.0",
"cross-env": "^6.0.3",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.2.0",
"prettier": "^1.18.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-scripts-ts": "^2.16.0",
"rollup": "^1.25.2",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-typescript2": "^0.24.3",
"rollup-plugin-url": "^3.0.0",
"typescript": "^3.7.0-beta"
},
"files": [
"dist"
]
}