-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.52 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
87
88
89
90
91
92
93
94
95
96
{
"name": "react-konamikey",
"version": "1.0.3",
"reveal": true,
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "npm run cleanup && npm run compile",
"cleanup": "rimraf index.js",
"compile": "babel src/index.js -o index.js",
"flow": "flow --one-line --show-all-errors",
"flow:typed": "flow-typed",
"lint": "standard src",
"prebuild": "npm run lint && npm run test:ci && npm run flow",
"prepare": "npm run build",
"test": "jest",
"test:ci": "jest --verbose --runInBand --ci"
},
"devDependencies": {
"@babel/cli": "^7.12.8",
"@babel/core": "^7.12.9",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/preset-flow": "^7.12.1",
"@babel/preset-react": "^7.12.7",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^11.2.2",
"@types/babel__core": "^7.1.12",
"@types/babel__preset-env": "^7.9.1",
"@types/enzyme": "^3.10.8",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/eslint": "^7.2.5",
"@types/raf": "^3.4.0",
"@types/react": "^16.14.2",
"@types/react-dom": "^17.0.0",
"@types/rimraf": "^3.0.0",
"babel-eslint": "10.1.0",
"babel-jest": "^26.6.3",
"eslint": "^7.14.0",
"eslint-plugin-flow": "^2.29.1",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-react": "^7.21.5",
"extract-react-types": "^0.26.0",
"flow-bin": "^0.138.0",
"flow-typed": "^3.2.1",
"jest": "^26.6.3",
"raf": "^3.4.1",
"react": "^16.2.0",
"react-dom": "^17.0.1",
"rimraf": "^3.0.2",
"standard": "^16.0.3"
},
"peerDependencies": {
"react": ">=17"
},
"jest": {
"setupFiles": [
"./.setup",
"raf/polyfill"
],
"testURL": "http://localhost/"
},
"standard": {
"globals": [],
"parser": "babel-eslint",
"plugins": [
"flowtype",
"react"
],
"env": [
"browser",
"jest",
"es6",
"shared-node-browser"
]
},
"description": "💅 trigger a callback function on anything with a sequence of key presses",
"repository": {
"type": "git",
"url": "git+https://github.com/moimikey/react-konamikey.git"
},
"keywords": [
"react",
"konami",
"keydown",
"keypress",
"sequence",
"easteregg"
],
"author": "Michael Scott Hertzberg <mshertzberg@gmail.com>",
"bugs": {
"url": "https://github.com/moimikey/react-konamikey/issues"
},
"homepage": "https://github.com/moimikey/react-konamikey#readme"
}