-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
77 lines (77 loc) · 2.11 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
{
"name": "react-keyboard",
"version": "1.0.10",
"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",
"release": "standard-version --releaseCommitMessageFormat 'chore(release): {{currentTag}} [skip ci]'",
"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.8.2",
"@types/react-dom": "^16.8.0",
"ajv": "^6.6.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",
"prettier": "^1.19.1",
"react": "^16.8.1",
"react-dom": "^16.8.1",
"standard-version": "^9.1.1",
"ts-jest": "^23.1.4",
"ts-loader": "^4.2.0",
"typescript": "3.7",
"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"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"printWidth": 100,
"semi": false,
"singleQuote": true,
"useTabs": false,
"bracketSpacing": false,
"arrowParens": "avoid",
"parser": "typescript",
"endOfLine": "lf",
"jsxBracketSameLine": false,
"proseWrap": "preserve"
},
"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"
}