forked from RobertWHurst/KeyboardJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 867 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
{
"name": "keyboardjs",
"description": "A library for binding to keys and key combos without the pain of key codes and key combo conflicts.",
"version": "2.4.1",
"main": "index.js",
"scripts": {
"test": "mocha test/**/*.spec.js",
"build": "browserify -g uglifyify -s keyboardJS ./index.js > ./dist/keyboard.min.js & browserify --debug -s keyboardJS ./index.js > ./dist/keyboard.js"
},
"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": {
"browserify": "^6.0.2",
"mocha": "^2.2.5",
"sinon": "^1.15.3",
"uglifyify": "^2.5.0"
}
}