| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- {
- "name": "compressing",
- "version": "1.6.2",
- "description": "Everything you need for compressing and uncompressing",
- "main": "index.js",
- "scripts": {
- "contributor": "git-contributor",
- "ts-test": "tsc -p ./test/fixtures/types/tsconfig.json",
- "test": "egg-bin test && npm run ts-test",
- "cov": "egg-bin cov",
- "lint": "eslint . --fix",
- "ci": "npm run lint && npm run ts-test && npm run cov"
- },
- "repository": {
- "type": "git",
- "url": "git+https://github.com/node-modules/compressing.git"
- },
- "keywords": [
- "compress",
- "uncompress",
- "util",
- "tgz",
- "gzip",
- "tar",
- "zip",
- "stream"
- ],
- "typings": "index.d.ts",
- "files": [
- "index.js",
- "index.d.ts",
- "lib"
- ],
- "author": "shaoshuai0102 <shaoshuai0102@gmail.com>",
- "license": "MIT",
- "bugs": {
- "url": "https://github.com/node-modules/compressing/issues"
- },
- "homepage": "https://github.com/node-modules/compressing#readme",
- "dependencies": {
- "flushwritable": "^1.0.0",
- "get-ready": "^1.0.0",
- "iconv-lite": "^0.5.0",
- "mkdirp": "^0.5.1",
- "pump": "^3.0.0",
- "streamifier": "^0.1.1",
- "tar-stream": "^1.5.2",
- "yauzl": "^2.7.0",
- "yazl": "^2.4.2"
- },
- "devDependencies": {
- "@types/mocha": "^5.2.5",
- "@types/node": "^10.12.9",
- "dir-compare": "^1.3.0",
- "egg-bin": "^1.9.1",
- "egg-ci": "^2.1.0",
- "eslint": "^3.10.2",
- "eslint-config-egg": "^3.2.0",
- "git-contributor": "^1.1.0",
- "mm": "^2.0.0",
- "mz-modules": "^2.1.0",
- "power-assert": "^1.4.2",
- "rimraf": "^2.6.2",
- "typescript": "^3.1.6",
- "uuid": "^3.0.1"
- },
- "engines": {
- "node": ">= 4.0.0"
- },
- "ci": {
- "version": "10, 12, 14, 16, 18",
- "os": "linux, macos",
- "license": {
- "year": "2017",
- "fullname": "node-modules and other contributors"
- }
- }
- }
|