This repository has been archived by the owner on Dec 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
86 lines (86 loc) · 2.33 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "keydown-from-click",
"version": "4.0.4",
"description": "Generate React keydown handlers by replicating click ones",
"main": "build/index.js",
"typings": "src/typings.d.ts",
"scripts": {
"build": "webpack",
"checkFormatting": "prettier -l './**/*.+(json|md|ts|tsx)'",
"checkTyping": "tsc",
"lint": "eslint -c .eslintrc.js ./ --ext ts,tsx --max-warnings=0",
"postreleasy": "npm publish",
"prepare": "husky install",
"prereleasy": "npm-run-all -p checkFormatting checkTyping lint test -s build",
"release": "releasy",
"test": "jest"
},
"files": [
"build/",
"LICENSE",
"README.md",
"src/typings.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/alcar/keydown-from-click.git"
},
"keywords": [
"a11y",
"accessibility",
"click",
"event",
"handler",
"hook",
"key",
"keydown",
"react"
],
"author": "Alan Carpilovsky",
"license": "MIT",
"bugs": {
"url": "https://github.com/alcar/keydown-from-click/issues"
},
"homepage": "https://github.com/alcar/keydown-from-click#readme",
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@babel/cli": "7.17.10",
"@babel/core": "7.18.2",
"@babel/preset-env": "7.18.2",
"@babel/preset-react": "7.17.12",
"@babel/preset-typescript": "7.17.12",
"@testing-library/react": "13.3.0",
"@types/jest": "27.5.1",
"@types/react": "18.0.9",
"@types/react-dom": "18.0.5",
"@typescript-eslint/eslint-plugin": "5.27.0",
"@typescript-eslint/parser": "5.27.0",
"babel-loader": "8.2.5",
"eslint": "8.16.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-jest": "26.4.6",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.30.0",
"eslint-plugin-react-hooks": "4.5.0",
"husky": "8.0.1",
"jest": "28.1.0",
"jest-environment-jsdom": "28.1.0",
"lint-staged": "12.4.3",
"npm-run-all": "4.1.5",
"prettier": "2.6.2",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-test-renderer": "18.1.0",
"releasy": "1.12.1",
"terser-webpack-plugin": "5.3.1",
"ts-jest": "28.0.3",
"typescript": "4.7.2",
"webpack": "5.72.1",
"webpack-cli": "4.9.2",
"webpack-node-externals": "3.0.0"
}
}