{
  "name": "iso-random-stream",
  "version": "2.0.2",
  "description": "Random bytes stream for node and browser",
  "repository": "hugomrdias/iso-random-stream",
  "author": "Hugo Dias <hugomrdias@gmail.com> (hugodias.me)",
  "license": "MIT",
  "main": "src/index.js",
  "types": "dist/src/index.d.ts",
  "typesVersions": {
    "*": {
      "*": [
        "*",
        "dist/*",
        "dist/src/*"
      ],
      "src/*": [
        "*",
        "dist/*",
        "dist/src/*"
      ]
    }
  },
  "engines": {
    "node": ">=10"
  },
  "browser": {
    "./src/random.js": "./src/random.browser.js"
  },
  "scripts": {
    "prepare": "tsc",
    "check": "yarn lint && yarn test && yarn test:browser",
    "test": "c8 -r json --report-dir .nyc_output --clean tape test.js",
    "test:browser": "playwright-test test.js --runner tape --cov",
    "lint": "eslint **/*.js && prettier --check **/*.{js,yml,json} --ignore-path .gitignore && tsc",
    "cov": "yarn test && yarn test:browser && nyc report --reporter=html && sirv coverage"
  },
  "files": [
    "dist/src",
    "src"
  ],
  "keywords": [
    "stream",
    "random",
    "bytes",
    "isomorphic",
    "node",
    "browser"
  ],
  "dependencies": {
    "events": "^3.3.0",
    "readable-stream": "^3.4.0"
  },
  "devDependencies": {
    "@types/readable-stream": "^2.3.9",
    "@types/tape": "^4.13.0",
    "c8": "^7.7.0",
    "hd-scripts": "^0.1.1",
    "nyc": "^15.0.1",
    "playwright-test": "^4.1.0",
    "sirv-cli": "^1.0.11",
    "tap-spec": "^5.0.0",
    "tape": "^5.2.2"
  },
  "simple-git-hooks": {
    "pre-commit": "npx lint-staged"
  },
  "lint-staged": {
    "*.{js,ts,md,yml,json}": "prettier --write",
    "*.js": "eslint --fix"
  },
  "eslintConfig": {
    "extends": "./node_modules/hd-scripts/eslint/index.js"
  },
  "eslintIgnore": [
    "dist"
  ],
  "prettier": "hd-scripts/prettier.config.js"
}
