package.json 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. {
  2. "_from": "fast-glob@^3.1.1",
  3. "_id": "fast-glob@3.2.5",
  4. "_inBundle": false,
  5. "_integrity": "sha512-2DtFcgT68wiTTiwZ2hNdJfcHNke9XOfnwmBRWXhmeKM8rF0TGwmC/Qto3S7RoZKp5cilZbxzO5iTNTQsJ+EeDg==",
  6. "_location": "/fast-glob",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "fast-glob@^3.1.1",
  12. "name": "fast-glob",
  13. "escapedName": "fast-glob",
  14. "rawSpec": "^3.1.1",
  15. "saveSpec": null,
  16. "fetchSpec": "^3.1.1"
  17. },
  18. "_requiredBy": [
  19. "/globby",
  20. "/react-dev-utils/globby"
  21. ],
  22. "_resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.5.tgz",
  23. "_shasum": "7939af2a656de79a4f1901903ee8adcaa7cb9661",
  24. "_spec": "fast-glob@^3.1.1",
  25. "_where": "C:\\Users\\rickh\\Desktop\\js-hw-1\\hw1\\node_modules\\globby",
  26. "author": {
  27. "name": "Denis Malinochkin",
  28. "url": "https://mrmlnc.com"
  29. },
  30. "bugs": {
  31. "url": "https://github.com/mrmlnc/fast-glob/issues"
  32. },
  33. "bundleDependencies": false,
  34. "dependencies": {
  35. "@nodelib/fs.stat": "^2.0.2",
  36. "@nodelib/fs.walk": "^1.2.3",
  37. "glob-parent": "^5.1.0",
  38. "merge2": "^1.3.0",
  39. "micromatch": "^4.0.2",
  40. "picomatch": "^2.2.1"
  41. },
  42. "deprecated": false,
  43. "description": "It's a very fast and efficient glob library for Node.js",
  44. "devDependencies": {
  45. "@nodelib/fs.macchiato": "^1.0.1",
  46. "@types/compute-stdev": "^1.0.0",
  47. "@types/easy-table": "^0.0.32",
  48. "@types/glob": "^7.1.1",
  49. "@types/glob-parent": "^5.1.0",
  50. "@types/is-ci": "^2.0.0",
  51. "@types/merge2": "^1.1.4",
  52. "@types/micromatch": "^4.0.0",
  53. "@types/minimist": "^1.2.0",
  54. "@types/mocha": "^5.2.7",
  55. "@types/node": "^12.7.8",
  56. "@types/rimraf": "^2.0.2",
  57. "@types/sinon": "^7.5.0",
  58. "compute-stdev": "^1.0.0",
  59. "easy-table": "^1.1.1",
  60. "eslint": "^6.5.1",
  61. "eslint-config-mrmlnc": "^1.1.0",
  62. "execa": "^2.0.4",
  63. "fast-glob": "^3.0.4",
  64. "glob": "^7.1.4",
  65. "is-ci": "^2.0.0",
  66. "log-update": "^4.0.0",
  67. "minimist": "^1.2.0",
  68. "mocha": "^6.2.1",
  69. "rimraf": "^3.0.0",
  70. "sinon": "^7.5.0",
  71. "tiny-glob": "^0.2.6",
  72. "typescript": "^3.6.3"
  73. },
  74. "engines": {
  75. "node": ">=8"
  76. },
  77. "homepage": "https://github.com/mrmlnc/fast-glob#readme",
  78. "keywords": [
  79. "glob",
  80. "patterns",
  81. "fast",
  82. "implementation"
  83. ],
  84. "license": "MIT",
  85. "main": "out/index.js",
  86. "name": "fast-glob",
  87. "repository": {
  88. "type": "git",
  89. "url": "git+https://github.com/mrmlnc/fast-glob.git"
  90. },
  91. "scripts": {
  92. "bench": "npm run bench-async && npm run bench-stream && npm run bench-sync",
  93. "bench-async": "npm run bench-async-flatten && npm run bench-async-deep && npm run bench-async-partial-flatten && npm run bench-async-partial-deep",
  94. "bench-async-deep": "node ./out/benchmark --mode async --pattern \"**\"",
  95. "bench-async-flatten": "node ./out/benchmark --mode async --pattern \"*\"",
  96. "bench-async-partial-deep": "node ./out/benchmark --mode async --pattern \"{fixtures,out}/**\"",
  97. "bench-async-partial-flatten": "node ./out/benchmark --mode async --pattern \"{fixtures,out}/{first,second}/*\"",
  98. "bench-stream": "npm run bench-stream-flatten && npm run bench-stream-deep && npm run bench-stream-partial-flatten && npm run bench-stream-partial-deep",
  99. "bench-stream-deep": "node ./out/benchmark --mode stream --pattern \"**\"",
  100. "bench-stream-flatten": "node ./out/benchmark --mode stream --pattern \"*\"",
  101. "bench-stream-partial-deep": "node ./out/benchmark --mode stream --pattern \"{fixtures,out}/**\"",
  102. "bench-stream-partial-flatten": "node ./out/benchmark --mode stream --pattern \"{fixtures,out}/{first,second}/*\"",
  103. "bench-sync": "npm run bench-sync-flatten && npm run bench-sync-deep && npm run bench-sync-partial-flatten && npm run bench-sync-partial-deep",
  104. "bench-sync-deep": "node ./out/benchmark --mode sync --pattern \"**\"",
  105. "bench-sync-flatten": "node ./out/benchmark --mode sync --pattern \"*\"",
  106. "bench-sync-partial-deep": "node ./out/benchmark --mode sync --pattern \"{fixtures,out}/**\"",
  107. "bench-sync-partial-flatten": "node ./out/benchmark --mode sync --pattern \"{fixtures,out}/{first,second}/*\"",
  108. "build": "npm run clean && npm run compile && npm run lint && npm test",
  109. "clean": "rimraf out",
  110. "compile": "tsc",
  111. "lint": "eslint \"src/**/*.ts\" --cache",
  112. "smoke": "mocha \"out/**/*.smoke.js\" -s 0",
  113. "smoke:async": "mocha \"out/**/*.smoke.js\" -s 0 --grep \"\\(async\\)\"",
  114. "smoke:stream": "mocha \"out/**/*.smoke.js\" -s 0 --grep \"\\(stream\\)\"",
  115. "smoke:sync": "mocha \"out/**/*.smoke.js\" -s 0 --grep \"\\(sync\\)\"",
  116. "test": "mocha \"out/**/*.spec.js\" -s 0",
  117. "watch": "npm run clean && npm run compile -- --sourceMap --watch"
  118. },
  119. "typings": "out/index.d.ts",
  120. "version": "3.2.5"
  121. }