package.json 4.8 KB

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