package.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. {
  2. "name": "compressing",
  3. "version": "1.6.2",
  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 && npm run ts-test",
  10. "cov": "egg-bin cov",
  11. "lint": "eslint . --fix",
  12. "ci": "npm run lint && npm run ts-test && npm run cov"
  13. },
  14. "repository": {
  15. "type": "git",
  16. "url": "git+https://github.com/node-modules/compressing.git"
  17. },
  18. "keywords": [
  19. "compress",
  20. "uncompress",
  21. "util",
  22. "tgz",
  23. "gzip",
  24. "tar",
  25. "zip",
  26. "stream"
  27. ],
  28. "typings": "index.d.ts",
  29. "files": [
  30. "index.js",
  31. "index.d.ts",
  32. "lib"
  33. ],
  34. "author": "shaoshuai0102 <shaoshuai0102@gmail.com>",
  35. "license": "MIT",
  36. "bugs": {
  37. "url": "https://github.com/node-modules/compressing/issues"
  38. },
  39. "homepage": "https://github.com/node-modules/compressing#readme",
  40. "dependencies": {
  41. "flushwritable": "^1.0.0",
  42. "get-ready": "^1.0.0",
  43. "iconv-lite": "^0.5.0",
  44. "mkdirp": "^0.5.1",
  45. "pump": "^3.0.0",
  46. "streamifier": "^0.1.1",
  47. "tar-stream": "^1.5.2",
  48. "yauzl": "^2.7.0",
  49. "yazl": "^2.4.2"
  50. },
  51. "devDependencies": {
  52. "@types/mocha": "^5.2.5",
  53. "@types/node": "^10.12.9",
  54. "dir-compare": "^1.3.0",
  55. "egg-bin": "^1.9.1",
  56. "egg-ci": "^2.1.0",
  57. "eslint": "^3.10.2",
  58. "eslint-config-egg": "^3.2.0",
  59. "git-contributor": "^1.1.0",
  60. "mm": "^2.0.0",
  61. "mz-modules": "^2.1.0",
  62. "power-assert": "^1.4.2",
  63. "rimraf": "^2.6.2",
  64. "typescript": "^3.1.6",
  65. "uuid": "^3.0.1"
  66. },
  67. "engines": {
  68. "node": ">= 4.0.0"
  69. },
  70. "ci": {
  71. "version": "10, 12, 14, 16, 18",
  72. "os": "linux, macos",
  73. "license": {
  74. "year": "2017",
  75. "fullname": "node-modules and other contributors"
  76. }
  77. }
  78. }