web 3d图形渲染器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

88 lines
3.7 KiB

  1. {
  2. "name": "fast-glob",
  3. "version": "3.2.5",
  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"
  13. },
  14. "main": "out/index.js",
  15. "typings": "out/index.d.ts",
  16. "keywords": [
  17. "glob",
  18. "patterns",
  19. "fast",
  20. "implementation"
  21. ],
  22. "devDependencies": {
  23. "@nodelib/fs.macchiato": "^1.0.1",
  24. "@types/compute-stdev": "^1.0.0",
  25. "@types/easy-table": "^0.0.32",
  26. "@types/glob": "^7.1.1",
  27. "@types/glob-parent": "^5.1.0",
  28. "@types/is-ci": "^2.0.0",
  29. "@types/merge2": "^1.1.4",
  30. "@types/micromatch": "^4.0.0",
  31. "@types/minimist": "^1.2.0",
  32. "@types/mocha": "^5.2.7",
  33. "@types/node": "^12.7.8",
  34. "@types/rimraf": "^2.0.2",
  35. "@types/sinon": "^7.5.0",
  36. "compute-stdev": "^1.0.0",
  37. "easy-table": "^1.1.1",
  38. "eslint": "^6.5.1",
  39. "eslint-config-mrmlnc": "^1.1.0",
  40. "execa": "^2.0.4",
  41. "fast-glob": "^3.0.4",
  42. "glob": "^7.1.4",
  43. "is-ci": "^2.0.0",
  44. "log-update": "^4.0.0",
  45. "minimist": "^1.2.0",
  46. "mocha": "^6.2.1",
  47. "rimraf": "^3.0.0",
  48. "sinon": "^7.5.0",
  49. "tiny-glob": "^0.2.6",
  50. "typescript": "^3.6.3"
  51. },
  52. "dependencies": {
  53. "@nodelib/fs.stat": "^2.0.2",
  54. "@nodelib/fs.walk": "^1.2.3",
  55. "glob-parent": "^5.1.0",
  56. "merge2": "^1.3.0",
  57. "micromatch": "^4.0.2",
  58. "picomatch": "^2.2.1"
  59. },
  60. "scripts": {
  61. "clean": "rimraf out",
  62. "lint": "eslint \"src/**/*.ts\" --cache",
  63. "compile": "tsc",
  64. "test": "mocha \"out/**/*.spec.js\" -s 0",
  65. "smoke": "mocha \"out/**/*.smoke.js\" -s 0",
  66. "smoke:sync": "mocha \"out/**/*.smoke.js\" -s 0 --grep \"\\(sync\\)\"",
  67. "smoke:async": "mocha \"out/**/*.smoke.js\" -s 0 --grep \"\\(async\\)\"",
  68. "smoke:stream": "mocha \"out/**/*.smoke.js\" -s 0 --grep \"\\(stream\\)\"",
  69. "build": "npm run clean && npm run compile && npm run lint && npm test",
  70. "watch": "npm run clean && npm run compile -- --sourceMap --watch",
  71. "bench": "npm run bench-async && npm run bench-stream && npm run bench-sync",
  72. "bench-async": "npm run bench-async-flatten && npm run bench-async-deep && npm run bench-async-partial-flatten && npm run bench-async-partial-deep",
  73. "bench-stream": "npm run bench-stream-flatten && npm run bench-stream-deep && npm run bench-stream-partial-flatten && npm run bench-stream-partial-deep",
  74. "bench-sync": "npm run bench-sync-flatten && npm run bench-sync-deep && npm run bench-sync-partial-flatten && npm run bench-sync-partial-deep",
  75. "bench-async-flatten": "node ./out/benchmark --mode async --pattern \"*\"",
  76. "bench-async-deep": "node ./out/benchmark --mode async --pattern \"**\"",
  77. "bench-async-partial-flatten": "node ./out/benchmark --mode async --pattern \"{fixtures,out}/{first,second}/*\"",
  78. "bench-async-partial-deep": "node ./out/benchmark --mode async --pattern \"{fixtures,out}/**\"",
  79. "bench-stream-flatten": "node ./out/benchmark --mode stream --pattern \"*\"",
  80. "bench-stream-deep": "node ./out/benchmark --mode stream --pattern \"**\"",
  81. "bench-stream-partial-flatten": "node ./out/benchmark --mode stream --pattern \"{fixtures,out}/{first,second}/*\"",
  82. "bench-stream-partial-deep": "node ./out/benchmark --mode stream --pattern \"{fixtures,out}/**\"",
  83. "bench-sync-flatten": "node ./out/benchmark --mode sync --pattern \"*\"",
  84. "bench-sync-deep": "node ./out/benchmark --mode sync --pattern \"**\"",
  85. "bench-sync-partial-flatten": "node ./out/benchmark --mode sync --pattern \"{fixtures,out}/{first,second}/*\"",
  86. "bench-sync-partial-deep": "node ./out/benchmark --mode sync --pattern \"{fixtures,out}/**\""
  87. }
  88. }