-
-
Notifications
You must be signed in to change notification settings - Fork 225
/
package.json
32 lines (32 loc) · 890 Bytes
/
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
{
"name": "keyboardjs",
"description": "A library for binding to keys and key combos without the pain of key codes and key combo conflicts.",
"version": "2.7.0",
"main": "dist/keyboard.js",
"scripts": {
"test": "mocha -r esm test/**/*.spec.js",
"build": "rollup --config"
},
"keywords": [
"Key Binding, Keyboard, Key combos, Keyboard Shortcuts"
],
"author": "Robert Hurst <[email protected]>",
"bugs": {
"url": "https://github.com/RobertWHurst/KeyboardJS/issues"
},
"repository": {
"type": "git",
"url": "[email protected]:RobertWHurst/KeyboardJS.git"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"@rollup/plugin-babel": "^5.0.2",
"esm": "^3.2.25",
"mocha": "^7.2.0",
"rollup": "^2.13.1",
"rollup-plugin-terser": "^6.1.0",
"sinon": "^9.0.2"
}
}