package.json 801 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "mousetrap",
  3. "version": "1.6.5",
  4. "description": "Simple library for handling keyboard shortcuts",
  5. "main": "mousetrap.js",
  6. "directories": {
  7. "test": "tests"
  8. },
  9. "scripts": {
  10. "test": "mocha --reporter=nyan tests/test.mousetrap.js"
  11. },
  12. "repository": {
  13. "type": "git",
  14. "url": "git://github.com/ccampbell/mousetrap.git"
  15. },
  16. "keywords": [
  17. "keyboard",
  18. "shortcuts",
  19. "events"
  20. ],
  21. "author": "Craig Campbell",
  22. "license": "Apache-2.0 WITH LLVM-exception",
  23. "gitHead": "c202a0bd4967d5a3064f9cb376db51dec9345336",
  24. "readmeFilename": "README.md",
  25. "devDependencies": {
  26. "chai": "^4.2.0",
  27. "grunt": "~1.0.3",
  28. "grunt-complexity": "~1.1.0",
  29. "jsdom": "^13.1.0",
  30. "jsdom-global": "^3.0.2",
  31. "mocha": "^5.2.0",
  32. "sinon": "^7.2.2"
  33. }
  34. }