package.json 867 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "keyboardjs",
  3. "description": "A library for binding to keys and key combos without the pain of key codes and key combo conflicts.",
  4. "version": "2.3.3",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "mocha test/**/*.spec.js",
  8. "build": "browserify -g uglifyify -s keyboardJS ./index.js > ./dist/keyboard.min.js & browserify --debug -s keyboardJS ./index.js > ./dist/keyboard.js"
  9. },
  10. "keywords": [
  11. "Key Binding, Keyboard, Key combos, Keyboard Shortcuts"
  12. ],
  13. "author": "Robert Hurst <robertwhurst@gmail.com>",
  14. "bugs": {
  15. "url": "https://github.com/RobertWHurst/KeyboardJS/issues"
  16. },
  17. "repository": {
  18. "type": "git",
  19. "url": "git@github.com:RobertWHurst/KeyboardJS.git"
  20. },
  21. "license": "MIT",
  22. "devDependencies": {
  23. "browserify": "^6.0.2",
  24. "mocha": "^2.2.5",
  25. "sinon": "^1.15.3",
  26. "uglifyify": "^2.5.0"
  27. }
  28. }