package.json 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. {
  2. "_from": "commander@>0.0.1",
  3. "_id": "commander@14.0.1",
  4. "_inBundle": false,
  5. "_integrity": "sha512-2JkV3gUZUVrbNA+1sjBOYLsMZ5cEEl8GTFP2a4AVz5hvasAMCQ1D2l2le/cX+pV4N6ZU17zjUahLpIXRrnWL8A==",
  6. "_location": "/commander",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "commander@>0.0.1",
  12. "name": "commander",
  13. "escapedName": "commander",
  14. "rawSpec": ">0.0.1",
  15. "saveSpec": null,
  16. "fetchSpec": ">0.0.1"
  17. },
  18. "_requiredBy": [
  19. "/oss"
  20. ],
  21. "_resolved": "https://registry.npmmirror.com/commander/-/commander-14.0.1.tgz",
  22. "_shasum": "2f9225c19e6ebd0dc4404dd45821b2caa17ea09b",
  23. "_spec": "commander@>0.0.1",
  24. "_where": "C:\\Users\\Administrator\\Desktop\\crmeb5.0\\template\\admin\\node_modules\\oss",
  25. "author": {
  26. "name": "TJ Holowaychuk",
  27. "email": "tj@vision-media.ca"
  28. },
  29. "bugs": {
  30. "url": "https://github.com/tj/commander.js/issues"
  31. },
  32. "bundleDependencies": false,
  33. "deprecated": false,
  34. "description": "the complete solution for node.js command-line programs",
  35. "devDependencies": {
  36. "@eslint/js": "^9.4.0",
  37. "@types/jest": "^30.0.0",
  38. "@types/node": "^22.7.4",
  39. "eslint": "^9.17.0",
  40. "eslint-config-prettier": "^10.0.1",
  41. "eslint-plugin-jest": "^29.0.1",
  42. "globals": "^16.0.0",
  43. "jest": "^30.0.3",
  44. "prettier": "^3.2.5",
  45. "ts-jest": "^29.0.3",
  46. "tsd": "^0.33.0",
  47. "typescript": "^5.0.4",
  48. "typescript-eslint": "^8.12.2"
  49. },
  50. "engines": {
  51. "node": ">=20"
  52. },
  53. "exports": {
  54. ".": {
  55. "require": {
  56. "types": "./typings/index.d.ts",
  57. "default": "./index.js"
  58. },
  59. "import": {
  60. "types": "./typings/esm.d.mts",
  61. "default": "./esm.mjs"
  62. },
  63. "default": "./index.js"
  64. },
  65. "./esm.mjs": {
  66. "types": "./typings/esm.d.mts",
  67. "import": "./esm.mjs"
  68. }
  69. },
  70. "files": [
  71. "index.js",
  72. "lib/*.js",
  73. "esm.mjs",
  74. "typings/index.d.ts",
  75. "typings/esm.d.mts",
  76. "package-support.json"
  77. ],
  78. "homepage": "https://github.com/tj/commander.js#readme",
  79. "keywords": [
  80. "commander",
  81. "command",
  82. "option",
  83. "parser",
  84. "cli",
  85. "argument",
  86. "args",
  87. "argv"
  88. ],
  89. "license": "MIT",
  90. "main": "./index.js",
  91. "name": "commander",
  92. "repository": {
  93. "type": "git",
  94. "url": "git+https://github.com/tj/commander.js.git"
  95. },
  96. "scripts": {
  97. "check": "npm run check:type && npm run check:lint && npm run check:format",
  98. "check:format": "prettier --check .",
  99. "check:lint": "eslint .",
  100. "check:type": "npm run check:type:js && npm run check:type:ts",
  101. "check:type:js": "tsc -p tsconfig.js.json",
  102. "check:type:ts": "tsd && tsc -p tsconfig.ts.json",
  103. "fix": "npm run fix:lint && npm run fix:format",
  104. "fix:format": "prettier --write .",
  105. "fix:lint": "eslint --fix .",
  106. "test": "jest && npm run check:type:ts",
  107. "test-all": "jest && npm run test-esm && npm run check",
  108. "test-esm": "node ./tests/esm-imports-test.mjs"
  109. },
  110. "support": true,
  111. "type": "commonjs",
  112. "types": "typings/index.d.ts",
  113. "version": "14.0.1"
  114. }