package.json 1017 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "coa",
  3. "description": "Command-Option-Argument: Yet another parser for command line options.",
  4. "version": "1.0.4",
  5. "homepage": "http://github.com/veged/coa",
  6. "author": "Sergey Berezhnoy <veged@ya.ru> (http://github.com/veged)",
  7. "maintainers": [
  8. "Sergey Berezhnoy <veged@ya.ru> (http://github.com/veged)",
  9. "Sergey Belov <peimei@ya.ru> (http://github.com/arikon)"
  10. ],
  11. "contributors": [
  12. "Sergey Belov <peimei@ya.ru> (http://github.com/arikon)"
  13. ],
  14. "repository": {
  15. "type": "git",
  16. "url": "git://github.com/veged/coa.git"
  17. },
  18. "directories": {
  19. "lib": "./lib"
  20. },
  21. "dependencies": {
  22. "q": "^1.1.2"
  23. },
  24. "devDependencies": {
  25. "coffee-script": "~1.6.3",
  26. "istanbul": "~0.1.40",
  27. "mocha-istanbul": "*",
  28. "mocha": "~1.21.4",
  29. "chai": "~1.7.2"
  30. },
  31. "scripts": {
  32. "test": "make test",
  33. "coverage": "make coverage"
  34. },
  35. "engines": {
  36. "node": ">= 0.8.0"
  37. },
  38. "licenses": [
  39. {
  40. "type": "MIT"
  41. }
  42. ],
  43. "optionalDependencies": {}
  44. }