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.

57 lines
1.4 KiB

  1. {
  2. "author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
  3. "name": "tar",
  4. "description": "tar for node",
  5. "version": "6.1.0",
  6. "repository": {
  7. "type": "git",
  8. "url": "https://github.com/npm/node-tar.git"
  9. },
  10. "scripts": {
  11. "test": "tap",
  12. "posttest": "npm run lint",
  13. "eslint": "eslint",
  14. "lint": "npm run eslint -- test lib",
  15. "lintfix": "npm run lint -- --fix",
  16. "preversion": "npm test",
  17. "postversion": "npm publish",
  18. "prepublishOnly": "git push origin --follow-tags",
  19. "genparse": "node scripts/generate-parse-fixtures.js",
  20. "bench": "for i in benchmarks/*/*.js; do echo $i; for j in {1..5}; do node $i || break; done; done"
  21. },
  22. "dependencies": {
  23. "chownr": "^2.0.0",
  24. "fs-minipass": "^2.0.0",
  25. "minipass": "^3.0.0",
  26. "minizlib": "^2.1.1",
  27. "mkdirp": "^1.0.3",
  28. "yallist": "^4.0.0"
  29. },
  30. "devDependencies": {
  31. "chmodr": "^1.2.0",
  32. "end-of-stream": "^1.4.3",
  33. "eslint": "^7.17.0",
  34. "eslint-plugin-import": "^2.22.1",
  35. "eslint-plugin-node": "^11.1.0",
  36. "eslint-plugin-promise": "^4.2.1",
  37. "eslint-plugin-standard": "^5.0.0",
  38. "events-to-array": "^1.1.2",
  39. "mutate-fs": "^2.1.1",
  40. "rimraf": "^2.7.1",
  41. "tap": "^14.9.2",
  42. "tar-fs": "^1.16.3",
  43. "tar-stream": "^1.6.2"
  44. },
  45. "license": "ISC",
  46. "engines": {
  47. "node": ">= 10"
  48. },
  49. "files": [
  50. "index.js",
  51. "lib/*.js"
  52. ],
  53. "tap": {
  54. "coverage-map": "map.js",
  55. "check-coverage": true
  56. }
  57. }