package.json 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. {
  2. "_from": "yargs@^16.2.0",
  3. "_id": "yargs@16.2.0",
  4. "_inBundle": false,
  5. "_integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==",
  6. "_location": "/yargs",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "yargs@^16.2.0",
  12. "name": "yargs",
  13. "escapedName": "yargs",
  14. "rawSpec": "^16.2.0",
  15. "saveSpec": null,
  16. "fetchSpec": "^16.2.0"
  17. },
  18. "_requiredBy": [
  19. "/concurrently"
  20. ],
  21. "_resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz",
  22. "_shasum": "1c82bf0f6b6a66eafce7ef30e376f49a12477f66",
  23. "_spec": "yargs@^16.2.0",
  24. "_where": "/home/pvvvm505/Документы/Project/Back/node_modules/concurrently",
  25. "bugs": {
  26. "url": "https://github.com/yargs/yargs/issues"
  27. },
  28. "bundleDependencies": false,
  29. "contributors": [
  30. {
  31. "name": "Yargs Contributors",
  32. "url": "https://github.com/yargs/yargs/graphs/contributors"
  33. }
  34. ],
  35. "dependencies": {
  36. "cliui": "^7.0.2",
  37. "escalade": "^3.1.1",
  38. "get-caller-file": "^2.0.5",
  39. "require-directory": "^2.1.1",
  40. "string-width": "^4.2.0",
  41. "y18n": "^5.0.5",
  42. "yargs-parser": "^20.2.2"
  43. },
  44. "deprecated": false,
  45. "description": "yargs the modern, pirate-themed, successor to optimist.",
  46. "devDependencies": {
  47. "@types/chai": "^4.2.11",
  48. "@types/mocha": "^8.0.0",
  49. "@types/node": "^14.11.2",
  50. "@wessberg/rollup-plugin-ts": "^1.3.2",
  51. "c8": "^7.0.0",
  52. "chai": "^4.2.0",
  53. "chalk": "^4.0.0",
  54. "coveralls": "^3.0.9",
  55. "cpr": "^3.0.1",
  56. "cross-env": "^7.0.2",
  57. "cross-spawn": "^7.0.0",
  58. "gts": "^3.0.0",
  59. "hashish": "0.0.4",
  60. "mocha": "^8.0.0",
  61. "rimraf": "^3.0.2",
  62. "rollup": "^2.23.0",
  63. "rollup-plugin-cleanup": "^3.1.1",
  64. "standardx": "^5.0.0",
  65. "typescript": "^4.0.2",
  66. "which": "^2.0.0",
  67. "yargs-test-extends": "^1.0.1"
  68. },
  69. "engines": {
  70. "node": ">=10"
  71. },
  72. "exports": {
  73. "./package.json": "./package.json",
  74. ".": [
  75. {
  76. "import": "./index.mjs",
  77. "require": "./index.cjs"
  78. },
  79. "./index.cjs"
  80. ],
  81. "./helpers": {
  82. "import": "./helpers/helpers.mjs",
  83. "require": "./helpers/index.js"
  84. },
  85. "./yargs": [
  86. {
  87. "require": "./yargs"
  88. },
  89. "./yargs"
  90. ]
  91. },
  92. "files": [
  93. "browser.mjs",
  94. "index.cjs",
  95. "helpers/*.js",
  96. "helpers/*",
  97. "index.mjs",
  98. "yargs",
  99. "build",
  100. "locales",
  101. "LICENSE",
  102. "lib/platform-shims/*.mjs",
  103. "!*.d.ts"
  104. ],
  105. "homepage": "https://yargs.js.org/",
  106. "keywords": [
  107. "argument",
  108. "args",
  109. "option",
  110. "parser",
  111. "parsing",
  112. "cli",
  113. "command"
  114. ],
  115. "license": "MIT",
  116. "main": "./index.cjs",
  117. "module": "./index.mjs",
  118. "name": "yargs",
  119. "repository": {
  120. "type": "git",
  121. "url": "git+https://github.com/yargs/yargs.git"
  122. },
  123. "scripts": {
  124. "build:cjs": "rollup -c rollup.config.cjs",
  125. "check": "gts lint && npm run check:js",
  126. "check:js": "standardx '**/*.mjs' && standardx '**/*.cjs' && standardx './*.mjs' && standardx './*.cjs'",
  127. "clean": "gts clean",
  128. "compile": "rimraf build && tsc",
  129. "coverage": "c8 report --check-coverage",
  130. "fix": "gts fix && npm run fix:js",
  131. "fix:js": "standardx --fix '**/*.mjs' && standardx --fix '**/*.cjs' && standardx --fix './*.mjs' && standardx --fix './*.cjs'",
  132. "postbuild:cjs": "rimraf ./build/index.cjs.d.ts",
  133. "postcompile": "npm run build:cjs",
  134. "posttest": "npm run check",
  135. "prepare": "npm run compile",
  136. "pretest": "npm run compile -- -p tsconfig.test.json && cross-env NODE_ENV=test npm run build:cjs",
  137. "test": "c8 mocha ./test/*.cjs --require ./test/before.cjs --timeout=12000 --check-leaks",
  138. "test:esm": "c8 mocha ./test/esm/*.mjs --check-leaks"
  139. },
  140. "standardx": {
  141. "ignore": [
  142. "build",
  143. "helpers",
  144. "**/example/**",
  145. "**/platform-shims/esm.mjs"
  146. ]
  147. },
  148. "type": "module",
  149. "version": "16.2.0"
  150. }