package.json 3.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. {
  2. "name": "fast-glob",
  3. "version": "3.2.12",
  4. "description": "It's a very fast and efficient glob library for Node.js",
  5. "license": "MIT",
  6. "repository": "mrmlnc/fast-glob",
  7. "author": {
  8. "name": "Denis Malinochkin",
  9. "url": "https://mrmlnc.com"
  10. },
  11. "engines": {
  12. "node": ">=8.6.0"
  13. },
  14. "main": "out/index.js",
  15. "typings": "out/index.d.ts",
  16. "files": [
  17. "out",
  18. "!out/{benchmark,tests}",
  19. "!out/**/*.map",
  20. "!out/**/*.spec.*"
  21. ],
  22. "keywords": [
  23. "glob",
  24. "patterns",
  25. "fast",
  26. "implementation"
  27. ],
  28. "devDependencies": {
  29. "@nodelib/fs.macchiato": "^1.0.1",
  30. "@types/compute-stdev": "^1.0.0",
  31. "@types/easy-table": "^0.0.32",
  32. "@types/glob": "^7.1.1",
  33. "@types/glob-parent": "^5.1.0",
  34. "@types/is-ci": "^2.0.0",
  35. "@types/merge2": "^1.1.4",
  36. "@types/micromatch": "^4.0.0",
  37. "@types/minimist": "^1.2.0",
  38. "@types/mocha": "^5.2.7",
  39. "@types/node": "^12.7.8",
  40. "@types/rimraf": "^2.0.2",
  41. "@types/sinon": "^7.5.0",
  42. "compute-stdev": "^1.0.0",
  43. "easy-table": "^1.1.1",
  44. "eslint": "^6.5.1",
  45. "eslint-config-mrmlnc": "^1.1.0",
  46. "execa": "^2.0.4",
  47. "fast-glob": "^3.0.4",
  48. "fdir": "^5.1.0",
  49. "glob": "^7.1.4",
  50. "is-ci": "^2.0.0",
  51. "log-update": "^4.0.0",
  52. "minimist": "^1.2.0",
  53. "mocha": "^6.2.1",
  54. "rimraf": "^3.0.0",
  55. "sinon": "^7.5.0",
  56. "tiny-glob": "^0.2.6",
  57. "typescript": "^3.6.3"
  58. },
  59. "dependencies": {
  60. "@nodelib/fs.stat": "^2.0.2",
  61. "@nodelib/fs.walk": "^1.2.3",
  62. "glob-parent": "^5.1.2",
  63. "merge2": "^1.3.0",
  64. "micromatch": "^4.0.4"
  65. },
  66. "scripts": {
  67. "clean": "rimraf out",
  68. "lint": "eslint \"src/**/*.ts\" --cache",
  69. "compile": "tsc",
  70. "test": "mocha \"out/**/*.spec.js\" -s 0",
  71. "smoke": "mocha \"out/**/*.smoke.js\" -s 0",
  72. "smoke:sync": "mocha \"out/**/*.smoke.js\" -s 0 --grep \"\\(sync\\)\"",
  73. "smoke:async": "mocha \"out/**/*.smoke.js\" -s 0 --grep \"\\(async\\)\"",
  74. "smoke:stream": "mocha \"out/**/*.smoke.js\" -s 0 --grep \"\\(stream\\)\"",
  75. "build": "npm run clean && npm run compile && npm run lint && npm test",
  76. "watch": "npm run clean && npm run compile -- --sourceMap --watch",
  77. "bench": "npm run bench-async && npm run bench-stream && npm run bench-sync",
  78. "bench-async": "npm run bench-async-flatten && npm run bench-async-deep && npm run bench-async-partial-flatten && npm run bench-async-partial-deep",
  79. "bench-stream": "npm run bench-stream-flatten && npm run bench-stream-deep && npm run bench-stream-partial-flatten && npm run bench-stream-partial-deep",
  80. "bench-sync": "npm run bench-sync-flatten && npm run bench-sync-deep && npm run bench-sync-partial-flatten && npm run bench-sync-partial-deep",
  81. "bench-async-flatten": "node ./out/benchmark --mode async --pattern \"*\"",
  82. "bench-async-deep": "node ./out/benchmark --mode async --pattern \"**\"",
  83. "bench-async-partial-flatten": "node ./out/benchmark --mode async --pattern \"{fixtures,out}/{first,second}/*\"",
  84. "bench-async-partial-deep": "node ./out/benchmark --mode async --pattern \"{fixtures,out}/**\"",
  85. "bench-stream-flatten": "node ./out/benchmark --mode stream --pattern \"*\"",
  86. "bench-stream-deep": "node ./out/benchmark --mode stream --pattern \"**\"",
  87. "bench-stream-partial-flatten": "node ./out/benchmark --mode stream --pattern \"{fixtures,out}/{first,second}/*\"",
  88. "bench-stream-partial-deep": "node ./out/benchmark --mode stream --pattern \"{fixtures,out}/**\"",
  89. "bench-sync-flatten": "node ./out/benchmark --mode sync --pattern \"*\"",
  90. "bench-sync-deep": "node ./out/benchmark --mode sync --pattern \"**\"",
  91. "bench-sync-partial-flatten": "node ./out/benchmark --mode sync --pattern \"{fixtures,out}/{first,second}/*\"",
  92. "bench-sync-partial-deep": "node ./out/benchmark --mode sync --pattern \"{fixtures,out}/**\""
  93. }
  94. }