bower.json 576 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "javascript-state-machine",
  3. "homepage": "https://github.com/jakesgordon/javascript-state-machine",
  4. "authors": [
  5. "Jake Gordon <jake@codeincomplete.com>"
  6. ],
  7. "description": "a simple finite state machine library",
  8. "main": ["state-machine.js", "state-machine.min.js"],
  9. "moduleType": [
  10. "amd",
  11. "globals",
  12. "node"
  13. ],
  14. "keywords": [
  15. "state machine",
  16. "server",
  17. "client"
  18. ],
  19. "license": "MIT",
  20. "ignore": [
  21. "**/.*",
  22. "node_modules",
  23. "bower_components",
  24. "test",
  25. "demo",
  26. "index.html",
  27. ".gitignore"
  28. ]
  29. }