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.

35 lines
973 B

  1. {
  2. "name": "@nodelib/fs.walk",
  3. "version": "1.2.6",
  4. "description": "A library for efficiently walking a directory recursively",
  5. "license": "MIT",
  6. "repository": "https://github.com/nodelib/nodelib/tree/master/packages/fs/fs.walk",
  7. "keywords": [
  8. "NodeLib",
  9. "fs",
  10. "FileSystem",
  11. "file system",
  12. "walk",
  13. "scanner",
  14. "crawler"
  15. ],
  16. "engines": {
  17. "node": ">= 8"
  18. },
  19. "main": "out/index.js",
  20. "typings": "out/index.d.ts",
  21. "scripts": {
  22. "clean": "rimraf {tsconfig.tsbuildinfo,out}",
  23. "lint": "eslint \"src/**/*.ts\" --cache",
  24. "compile": "tsc -b .",
  25. "compile:watch": "tsc -p . --watch --sourceMap",
  26. "test": "mocha \"out/**/*.spec.js\" -s 0",
  27. "build": "npm run clean && npm run compile && npm run lint && npm test",
  28. "watch": "npm run clean && npm run compile:watch"
  29. },
  30. "dependencies": {
  31. "@nodelib/fs.scandir": "2.1.4",
  32. "fastq": "^1.6.0"
  33. },
  34. "gitHead": "bd149ea6dc1ef18c234730278271f6a7f3882ed2"
  35. }