package.json
820 Bytes
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
{
"name": "keycode",
"description": "Convert between keyboard keycodes and keynames and vice versa.",
"version": "2.2.1",
"main": "index.js",
"directories": {
"example": "examples",
"test": "test"
},
"scripts": {
"test": "mocha test/keycode.js"
},
"repository": {
"type": "git",
"url": "git://github.com/timoxley/keycode.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/timoxley/keycode/issues"
},
"devDependencies": {
"mocha": "^3.0.2"
},
"homepage": "https://github.com/timoxley/keycode",
"dependencies": {},
"keywords": [
"keyboard",
"keycode",
"keyboardevent",
"ascii",
"keydown",
"keyup",
"metakey",
"keyname",
"keypress"
],
"author": "Tim Oxley <secoif@gmail.com>",
"typings": "./index.d.ts"
}