{
  "name": "tar-stream-web",
  "version": "1.0.6",
  "description": "A library to create a tar archive from file streams. Support both browser and node.js.",
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "files": [
    "lib/**/*"
  ],
  "scripts": {
    "build": "tsc",
    "format": "prettier --write \"src/**/*.ts\"",
    "lint": "tslint -p tsconfig.json",
    "test": "jest --config jestconfig.json"
  },
  "browser": {
    "./lib/platform/node.js": "./lib/platform/browser.js"
  },
  "keywords": [
    "tar",
    "archive"
  ],
  "homepage": "https://github.com/Spedoske/tar-stream-web",
  "license": "MIT",
  "author": {
    "name": "Spedoske",
    "email": "52339623+Spedoske@users.noreply.github.com",
    "url": "https://github.com/Spedoske"
  },
  "devDependencies": {
    "@types/jest": "^29.0.1",
    "jest": "^29.0.3",
    "prettier": "^2.7.1",
    "ts-jest": "^29.0.0",
    "tslint": "^6.1.3",
    "tslint-config-prettier": "^1.18.0",
    "typescript": "^4.8.3"
  },
  "dependencies": {
    "web-streams-polyfill": "^3.2.1"
  }
}
