{
  "name": "random-esm",
  "version": "4.2.0",
  "description": "Seedable random number generator supporting many common distributions.",
  "repository": "connlark/random-ejs",
  "author": "Connor Larkin <~@connorlarkin.com>",
  "main": "dist/cjs/index.cjs.js",
  "module": "dist/esm/index.js",
  "types": "dist/types/index.d.ts",
  "type": "module",
  "sideEffects": false,
  "license": "MIT",
  "engines": {
    "node": ">=14"
  },
  "scripts": {
    "start": "run-s build:watch",
    "build": "tsc -b",
    "build:watch": "tsc -b --watch",
    "postbuild": "echo '{ \"type\": \"module\" }' > dist/cjs/package.json; echo '{ \"type\": \"module\" }' > dist/esm/package.json",
    "prebuild": "run-s clean",
    "clean": "del dist",
    "prepublishOnly": "run-s build",
    "docs": "update-markdown-jsdoc -f dist/esm/random.js --shallow",
    "pretest": "run-s build",
    "test": "run-s test:*",
    "test:unit": "ava -v",
    "test:prettier": "prettier '**/*.{js,jsx,ts,tsx}' --check",
    "test:lint": "eslint '{src,test}/**/*.ts'"
  },
  "keywords": [
    "random",
    "number",
    "generator",
    "rng",
    "prng",
    "stats",
    "d3-random",
    "seedrandom",
    "distribution",
    "pseudorandom",
    "uniform",
    "normal",
    "gaussian",
    "lognormal",
    "poisson",
    "exponential",
    "irwinhall",
    "bates"
  ],
  "dependencies": {
    "seedrandom": "^3.0.5"
  },
  "devDependencies": {
    "@types/node": "^17.0.21",
    "@types/seedrandom": "^3.0.2",
    "@typescript-eslint/eslint-plugin": "^5.15.0",
    "@typescript-eslint/parser": "^5.15.0",
    "ava": "^4.1.0",
    "del-cli": "^4.0.1",
    "esbuild-node-loader": "^0.8.0",
    "eslint": "^8.11.0",
    "eslint-config-prettier": "^8.5.0",
    "eslint-config-standard": "^17.0.0-1",
    "eslint-plugin-import": "^2.25.4",
    "eslint-plugin-n": "^15.0.1",
    "eslint-plugin-node": "^11.1.0",
    "eslint-plugin-prettier": "^4.0.0",
    "eslint-plugin-promise": "^6.0.0",
    "npm-run-all": "^4.1.5",
    "prettier": "^2.5.1",
    "typescript": "^4.7.0-dev.20220314",
    "update-markdown-jsdoc": "^1.0.11"
  },
  "files": [
    "dist"
  ],
  "ava": {
    "extensions": {
      "js": true,
      "ts": "module"
    },
    "nodeArguments": [
      "--loader=esbuild-node-loader",
      "--experimental-specifier-resolution=node"
    ]
  }
}
