-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.28 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.28 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
77
78
79
80
81
82
83
84
{
"name": "react-konami-code",
"version": "2.3.0",
"description": "Trigger an easter egg by pressing a sequence of keys. Available as a component or a custom hook. Supports timeout and input debounce/reset.",
"main": "dist/Konami.js",
"types": "dist/index.d.ts",
"scripts": {
"prebuild": "rm -rf ./dist",
"build": "webpack --mode production",
"lint": "eslint src/* --ext .ts,.tsx,.d.ts",
"prepublish": "npm run build",
"test": "jest",
"test:coverage": "jest --coverage --no-cache"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"setupFiles": [
"./test/jestSetup.ts"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"testURL": "http://localhost/",
"verbose": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/vmarchesin/react-konami-code.git"
},
"keywords": [
"react",
"konami",
"konami code",
"easter egg",
"code",
"konamicode",
"component",
"hook",
"hooks",
"useKonami"
],
"author": "Vinicius Marchesin Araujo <dev@vmarches.in>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vmarchesin/react-konami-code/issues"
},
"homepage": "https://github.com/vmarchesin/react-konami-code#readme",
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@types/enzyme": "^3.10.12",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^26.0.22",
"@types/react": "^18.0.9",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"babel-loader": "^8.2.5",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"enzyme-to-json": "^3.6.2",
"eslint": "^8.15.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.4",
"jest": "^26.0.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"ts-jest": "^26.5.4",
"ts-loader": "^8.0.18",
"typescript": "^4.6.4",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"prop-types": "^15.8.1"
},
"peerDependencies": {
"react": ">= 16.8.0",
"react-dom": ">= 16.8.0"
}
}