package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "name": "compressing",
  3. "version": "1.10.0",
  4. "description": "Everything you need for compressing and uncompressing",
  5. "main": "index.js",
  6. "scripts": {
  7. "contributor": "git-contributor",
  8. "ts-test": "tsc -p ./test/fixtures/types/tsconfig.json",
  9. "test": "egg-bin test --ts false && npm run ts-test",
  10. "cov": "egg-bin cov --ts false",
  11. "lint-fix": "eslint . --fix",
  12. "lint": "eslint .",
  13. "ci": "npm run lint && npm run ts-test && npm run cov"
  14. },
  15. "repository": {
  16. "type": "git",
  17. "url": "git+https://github.com/node-modules/compressing.git"
  18. },
  19. "keywords": [
  20. "compress",
  21. "uncompress",
  22. "util",
  23. "tgz",
  24. "gzip",
  25. "tar",
  26. "zip",
  27. "stream"
  28. ],
  29. "typings": "index.d.ts",
  30. "files": [
  31. "index.js",
  32. "index.d.ts",
  33. "lib"
  34. ],
  35. "author": "shaoshuai0102 <shaoshuai0102@gmail.com>",
  36. "license": "MIT",
  37. "bugs": {
  38. "url": "https://github.com/node-modules/compressing/issues"
  39. },
  40. "homepage": "https://github.com/node-modules/compressing#readme",
  41. "dependencies": {
  42. "flushwritable": "^1.0.0",
  43. "get-ready": "^1.0.0",
  44. "iconv-lite": "^0.5.0",
  45. "mkdirp": "^0.5.1",
  46. "pump": "^3.0.0",
  47. "streamifier": "^0.1.1",
  48. "tar-stream": "^1.5.2",
  49. "@eggjs/yauzl": "^2.11.0",
  50. "yazl": "^2.4.2"
  51. },
  52. "devDependencies": {
  53. "@types/mocha": "10",
  54. "@types/node": "20",
  55. "dir-compare": "^1.3.0",
  56. "egg-bin": "6",
  57. "eslint": "8",
  58. "eslint-config-egg": "12",
  59. "git-contributor": "2",
  60. "mm": "^2.0.0",
  61. "mz-modules": "^2.1.0",
  62. "typescript": "5",
  63. "uuid": "^3.0.1"
  64. },
  65. "engines": {
  66. "node": ">= 4.0.0"
  67. }
  68. }