-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.65 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": "use-key-capture",
"version": "1.0.1-beta.1",
"main": "dist",
"license": "MIT",
"scripts": {
"build": "rimraf dist && babel src --ignore */__tests__ --out-dir dist",
"prepare": "yarn test && yarn build",
"postpublish": "git push --tags",
"test": "jest --config=jest.config.js",
"test:watch": "jest --config=jest.config.js --watch",
"test:coverage": "jest --config=jest.config.js --coverage && open coverage/Icov-report/index.html",
"docz:dev": "docz dev",
"docz:build": "docz build",
"docz:serve": "docz build && docz serve",
"predeploy": "yarn test && yarn docz:build",
"deploy": "gh-pages -d .docz/dist"
},
"keywords": [
"keyboard event",
"key press",
"enhanced key press event",
"key press listener",
"react"
],
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.7.7",
"@babel/preset-react": "^7.7.4",
"@testing-library/jest-dom": "^5.0.0",
"@testing-library/react": "^9.4.0",
"@testing-library/react-hooks": "^3.2.1",
"docz": "^2.2.0",
"gh-pages": "^2.2.0",
"husky": "^4.2.1",
"jest": "^24.9.0",
"react-test-renderer": "^16.12.0",
"rimraf": "^3.0.0"
},
"husky": {
"hooks": {
"pre-commit": "yarn test"
}
},
"peerDependencies": {
"@babel/runtime": "^7.8.4",
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"browserslist": "> 0.25%, not dead",
"author": "Pranesh T G",
"homepage": "http://pranesh239.github.io/use-key-capture",
"bugs": {
"url": "https://github.com/pranesh239/use-key-capture/issues"
}
}