package.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "coa",
  3. "description": "Command-Option-Argument: Yet another parser for command line options.",
  4. "version": "2.0.2",
  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. "files": [
  15. "lib/",
  16. "index.js",
  17. "coa.d.ts",
  18. "README.ru.md"
  19. ],
  20. "repository": {
  21. "type": "git",
  22. "url": "git://github.com/veged/coa.git"
  23. },
  24. "directories": {
  25. "lib": "./lib"
  26. },
  27. "dependencies": {
  28. "@types/q": "^1.5.1",
  29. "chalk": "^2.4.1",
  30. "q": "^1.1.2"
  31. },
  32. "devDependencies": {
  33. "chai": "~1.7.2",
  34. "coveralls": "^2.11.16",
  35. "eslint": "^4.15.0",
  36. "eslint-config-pedant": "^1.0.0",
  37. "mocha": "~1.21.4",
  38. "nyc": "^10.1.2"
  39. },
  40. "scripts": {
  41. "clean": "rm -r .nyc_output coverage",
  42. "coverage": "nyc --reporter=text --reporter=html mocha; echo; echo 'Open coverage/index.html file in your browser'",
  43. "coveralls": "nyc report --reporter=text-lcov | coveralls",
  44. "lint": "eslint .",
  45. "pretest": "npm run lint",
  46. "test": "nyc mocha"
  47. },
  48. "engines": {
  49. "node": ">= 4.0"
  50. },
  51. "types": "./coa.d.ts",
  52. "license": "MIT"
  53. }