{
  "name": "extension-port-stream",
  "version": "3.0.0",
  "description": "A module for creating a node style stream over a WebExtension port object.",
  "main": "dist/index.js",
  "engines": {
    "node": ">=12.0.0"
  },
  "scripts": {
    "build": "rm -rf ./dist && tsc --project .",
    "lint": "eslint . --ext ts,js,json",
    "lint:fix": "yarn lint --fix",
    "test": "echo \"Error: no test specified\" && exit 1",
    "prepublishOnly": "yarn build && yarn lint"
  },
  "files": [
    "dist/"
  ],
  "repository": {
    "type": "git",
    "url": "https://git@github.com/MetaMask/extension-port-stream"
  },
  "keywords": [
    "WebExtension",
    "Stream"
  ],
  "author": "Dan Finlay <dan@danfinlay.com>",
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/MetaMask/extension-port-stream/issues"
  },
  "homepage": "https://github.com/MetaMask/extension-port-stream#readme",
  "dependencies": {
    "readable-stream": "^3.6.2 || ^4.4.2",
    "webextension-polyfill": ">=0.10.0 <1.0"
  },
  "devDependencies": {
    "@metamask/eslint-config": "^4.1.0",
    "@types/readable-stream": "4.0.0",
    "@types/node": "14.14.7",
    "@types/webextension-polyfill": ">=0.10.0 <1.0",
    "@typescript-eslint/eslint-plugin": "^4.8.1",
    "@typescript-eslint/parser": "^4.8.1",
    "eslint": "^7.13.0",
    "eslint-plugin-import": "^2.22.1",
    "eslint-plugin-json": "^2.1.2",
    "eslint-plugin-node": "^11.1.0",
    "typescript": "^4.0.5"
  }
}
