forked from ruanyl/react-keyboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.66 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
{
"name": "react-keyboard",
"version": "1.0.0-beta10",
"description": "A declarative library for handling hotkeys and focus within a React application",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "./node_modules/.bin/tsc --outDir lib --declaration",
"prepublish": "npm run build",
"test": "npm run test-only",
"test-only": "jest --coverage",
"test:watch": "jest --watch"
},
"devDependencies": {
"@types/enzyme": "^3.1.10",
"@types/jest": "^22.2.3",
"@types/lodash.isequal": "^4.5.3",
"@types/mousetrap": "^1.6.0",
"@types/prop-types": "^15.5.5",
"@types/react": "^16.4.6",
"@types/react-dom": "^16.0.7",
"ajv": "^6.6.2",
"babel-jest": "^23.4.2",
"enzyme": "^3.5.0",
"enzyme-adapter-react-16": "^1.3.1",
"express": "^4.16.3",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.5.0",
"jest-enzyme": "^7.0.1",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"ts-jest": "^23.1.4",
"ts-loader": "^4.2.0",
"typescript": "^2.9.2",
"webpack": "^4.17.1",
"webpack-cli": "^3.1.0",
"webpack-dev-middleware": "^3.1.2"
},
"dependencies": {
"lodash.isequal": "^4.5.0",
"mousetrap": "^1.6.2"
},
"peerDependencies": {
"react": ">= 0.14.0",
"react-dom": ">= 0.14.0"
},
"author": "Yulong Ruan <[email protected]>",
"license": "MIT",
"keywords": [
"react-component",
"hotkeys",
"focus",
"react"
],
"repository": {
"type": "git",
"url": "https://github.com/ruanyl/react-keyboard.git"
},
"homepage": "https://github.com/ruanyl/react-keyboard",
"bugs": "https://github.com/ruanyl/react-keyboard/issues"
}