package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "commander",
  3. "version": "6.2.1",
  4. "description": "the complete solution for node.js command-line programs",
  5. "keywords": [
  6. "commander",
  7. "command",
  8. "option",
  9. "parser",
  10. "cli",
  11. "argument",
  12. "args",
  13. "argv"
  14. ],
  15. "author": "TJ Holowaychuk <tj@vision-media.ca>",
  16. "license": "MIT",
  17. "repository": {
  18. "type": "git",
  19. "url": "https://github.com/tj/commander.js.git"
  20. },
  21. "scripts": {
  22. "lint": "eslint index.js \"tests/**/*.js\"",
  23. "typescript-lint": "eslint typings/*.ts",
  24. "test": "jest && npm run test-typings",
  25. "test-typings": "tsc -p tsconfig.json"
  26. },
  27. "main": "index",
  28. "files": [
  29. "index.js",
  30. "typings/index.d.ts"
  31. ],
  32. "dependencies": {},
  33. "devDependencies": {
  34. "@types/jest": "^26.0.15",
  35. "@types/node": "^14.14.2",
  36. "@typescript-eslint/eslint-plugin": "^4.5.0",
  37. "eslint": "^7.11.0",
  38. "eslint-config-standard-with-typescript": "^19.0.1",
  39. "eslint-plugin-jest": "^24.1.0",
  40. "jest": "^26.6.0",
  41. "standard": "^15.0.0",
  42. "typescript": "^4.0.3"
  43. },
  44. "typings": "typings/index.d.ts",
  45. "jest": {
  46. "collectCoverage": true
  47. },
  48. "engines": {
  49. "node": ">= 6"
  50. }
  51. }