package.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "method",
  3. "id": "method",
  4. "version": "1.0.2",
  5. "description": "Functional polymorphic method dispatch",
  6. "keywords": [
  7. "method",
  8. "dispatch",
  9. "protocol",
  10. "polymorphism",
  11. "type dispatch"
  12. ],
  13. "author": "Irakli Gozalishvili <rfobic@gmail.com> (http://jeditoolkit.com)",
  14. "homepage": "https://github.com/Gozala/method",
  15. "main": "./core.js",
  16. "repository": {
  17. "type": "git",
  18. "url": "https://github.com/Gozala/method.git",
  19. "web": "https://github.com/Gozala/method"
  20. },
  21. "bugs": {
  22. "url": "http://github.com/Gozala/method/issues/"
  23. },
  24. "devDependencies": {
  25. "test": "~0.x.0",
  26. "repl-utils": "~2.0.1",
  27. "phantomify": "~0.1.0"
  28. },
  29. "scripts": {
  30. "test": "npm run test-node && npm run test-browser",
  31. "test-browser": "node ./node_modules/phantomify/bin/cmd.js ./test/browser.js",
  32. "test-node": "node ./test/common.js",
  33. "repl": "node node_modules/repl-utils"
  34. },
  35. "licenses": [
  36. {
  37. "type": "MIT",
  38. "url": "https://github.com/Gozala/method/License.md"
  39. }
  40. ]
  41. }