-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.61 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": "@npm-packages-collection/multi-key-handler",
"description": "A utility class for handling multiple key events and executing a callback function based on the key states.",
"author": "Eugene Yevhen Andruszczenko <eugene.andruszczenko@gmail.com>",
"contributors": [
"32teeth <eugene.andruszczenko@gmail.com> (https://github.com/32teeth)"
],
"repository": {
"type": "git",
"url": "git+https://github.com/npm-packages-collection/multi-key-handler.git"
},
"license": "CC-BY-SA-4.0",
"version": "0.0.5",
"keywords": [
"multi-key",
"keyboard",
"key-handler",
"key-combination",
"multi-key-handler",
"key-events",
"keyboard-events",
"keymap",
"event-listener",
"arrow-keys",
"debugging",
"custom-key-handler",
"keydown",
"keyup",
"javascript",
"callback",
"npm-package"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"engines": {
"node": "20.x",
"npm": "10.x"
},
"main": "index.js",
"type": "module",
"scripts": {
"publish:npm": "npm publish --registry https://registry.npmjs.org/",
"publish:github": "npm publish --registry https://npm.pkg.github.com/",
"publish": "npm run publish:npm && npm run publish:github",
"test": "mocha"
},
"devDependencies": {
"chai": "^4.3.4",
"mocha": "^9.1.3",
"jsdom": "^25.0.1",
"sinon": "^19.0.2"
},
"bugs": {
"url": "https://github.com/npm-packages-collection/multi-key-handler/issues"
},
"homepage": "https://github.com/npm-packages-collection/multi-key-handler#readme",
"directories": {
"test": "test"
}
}