package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "commander",
  3. "version": "5.1.0",
  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": "^25.2.1",
  35. "@types/node": "^12.12.36",
  36. "@typescript-eslint/eslint-plugin": "^2.29.0",
  37. "eslint": "^6.8.0",
  38. "eslint-config-standard-with-typescript": "^15.0.1",
  39. "eslint-plugin-jest": "^23.8.2",
  40. "jest": "^25.4.0",
  41. "standard": "^14.3.3",
  42. "typescript": "^3.7.5"
  43. },
  44. "typings": "typings/index.d.ts",
  45. "engines": {
  46. "node": ">= 6"
  47. }
  48. }