-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.58 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
{
"name": "key-definitions",
"version": "2.0.3",
"description": "get a keyboard key definition from event",
"module": "dist/bundle.js",
"types": "dist/bundle.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"tsc": "tsc",
"build": "rollup --config rollup.config.ts",
"build:prod": "NODE_ENV=production rollup --config rollup.config.ts ",
"eslint": "eslint --ext .ts,.js --fix .",
"prepare": "husky install"
},
"author": {
"name": "sajcics",
"url": "https://github.com/sajcics"
},
"keywords": [
"keys",
"keyboard",
"events",
"keycode",
"keyup",
"keypress",
"keydown",
"keyboardevent",
"keyname",
"code",
"ascii",
"esm",
"es",
"typescript",
"js",
"ts",
"definitions",
"use keycode",
"usekeycode",
"keycombo",
"which",
"shortcut",
"key definitions",
"keyDefinitions"
],
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@rollup/plugin-typescript": "^8.3.2",
"@types/jest": "^27.5.1",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"eslint": "^8.14.0",
"husky": "^8.0.2",
"jest": "^27.5.1",
"rollup": "^2.73.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-dts": "^4.2.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.32.1",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3"
},
"repository": {
"type": "git",
"url": "https://github.com/sajcics/key-definitions.git"
},
"engines": {
"node": ">=10.19.0"
}
}