forked from florian/key-event-to-string
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.22 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
{
"name": "keyboard-event-to-string",
"version": "2.1.0",
"description": " Converts a JavaScript keyboard event object into a humanly readable string",
"main": "./dist/cjs/keyboard-event-to-string.js",
"module": "./dist/esm/keyboard-event-to-string.js",
"files": [
"dist/"
],
"scripts": {
"test": "gauge run specs/basic.spec",
"build": "rm -rf ./dist/* && node_modules/.bin/tsc -p tsconfig.json && node_modules/.bin/tsc -p tsconfig-cjs.json",
"prepublishOnly": "yarn build"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/ndp-software/keyboard-event-to-string.git"
},
"keywords": [
"front-end",
"dom",
"events",
"keyboard",
"KeyboardEvent",
"keycode",
"keys",
"keydown",
"keyup"
],
"authors": [
"Florian Hartmann",
"Andrew J Peterson"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ndp-software/keyboard-event-to-string/issues"
},
"homepage": "https://github.com/ndp-software/keyboard-event-to-string#readme",
"devDependencies": {
"@getgauge/cli": "latest",
"@types/assert": "^1.5.6",
"@types/node": "latest",
"assert": "latest",
"gauge-ts": "latest",
"typescript": "^4.4.3"
}
}