forked from inturn/react-bind-keys
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.02 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.02 KB
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
{
"name": "react-use-bind-keys",
"version": "0.0.1",
"description": "A react hook for binding hot-keys",
"main": "dist/react-use-bind-keys.js",
"module": "dist/react-use-bind-keys.ejs",
"types": "dist/types/index.d.ts",
"repository": "github.com/inturn/react-use-bind-keys",
"author": "INTURN",
"license": "MIT",
"files": [
"LICENSE",
"README.md",
"dist/"
],
"scripts": {
"build": "yarn clean && yarn rollup -c rollup.config.js",
"clean": "rm -rf dist",
"lint": "eslint './src/**/*.{ts,tsx}'",
"lint:fix": "eslint --fix",
"prebuild": "yarn lint && yarn test",
"prepublish": "yarn build",
"release": "standard-version && yarn publish --non-interactive",
"test": "yarn jest"
},
"devDependencies": {
"@commitlint/cli": "^8.3.4",
"@commitlint/config-conventional": "^8.3.4",
"@testing-library/react": "^10.0.2",
"@types/jest": "^25.1.4",
"@types/react": "^16.9.30",
"@types/react-dom": "^16.9.5",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-simple-import-sort": "^5.0.1",
"husky": "^4.0.6",
"jest": "^25.2.4",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rollup": "^1.31.1",
"rollup-plugin-typescript2": "^0.20.1",
"standard-version": "^7.1.0",
"ts-jest": "^25.3.0",
"typescript": "^3.4.5"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testPathIgnorePatterns": [
"/node_modules/"
],
"testRegex": "(/test/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"moduleNameMapper": {
"\\.(css|less)$": "identity-obj-proxy"
}
},
"peerDependencies": {
"react": "^16.8.4"
},
"dependencies": {
"react-use-passive-reducer": "^0.1.0"
}
}