package.json 762 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "undo-manager",
  3. "version": "1.0.5",
  4. "description": "Simple undo manager to provide undo and redo actions in JavaScript applications.",
  5. "main": "lib/undomanager.js",
  6. "directories": {
  7. "test": "test"
  8. },
  9. "scripts": {},
  10. "repository": {
  11. "type": "git",
  12. "url": "git+https://github.com/ArthurClemens/Javascript-Undo-Manager.git"
  13. },
  14. "keywords": [
  15. "undo"
  16. ],
  17. "author": "Arthur Clemens <arthurclemens@gmail.com> (http://visiblearea.com)",
  18. "license": "MIT",
  19. "bugs": {
  20. "url": "https://github.com/ArthurClemens/Javascript-Undo-Manager/issues"
  21. },
  22. "homepage": "https://github.com/ArthurClemens/Javascript-Undo-Manager",
  23. "jspm": {
  24. "directories": {
  25. "lib": "lib"
  26. },
  27. "files": [
  28. "lib"
  29. ]
  30. }
  31. }