{
  "name": "@grandom/shuffle",
  "version": "1.1.0",
  "description": "A configurable, flexible, seedable, and overall great random shuffler.",
  "author": "Richard King <richrdkng@gmail.com> (www.richrdkng.com)",
  "license": "MIT",
  "main": "index.js",
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/grandom-library/grandom-js.git"
  },
  "bugs": {
    "url": "https://github.com/grandom-library/grandom-js/issues"
  },
  "homepage": "https://github.com/grandom-library/grandom-js/tree/main/packages/shuffle#readme",
  "keywords": [
    "random",
    "shuffle",
    "shuffler",
    "rand",
    "seedable",
    "generator",
    "seed",
    "rng",
    "prng",
    "srng",
    "sprng",
    "crypto",
    "randomness",
    "seedrand",
    "seedrandom",
    "grandom"
  ],
  "engines": {
    "node": ">= 16"
  },
  "ts-standard": {
    "ignore": [
      "dist*",
      "*.config.js"
    ]
  },
  "scripts": {
    "start": "npm test -- --watchAll",
    "fix:lint": "ts-standard --verbose --fix | snazzy",
    "check": "npm run check:commits && npm run check:lint && npm run check:types && npm run check:test",
    "//": "-------------------------------------------------------------------",
    "check:commits": "commitlint --from $(git rev-parse --short HEAD^1) --to $(git rev-parse --short HEAD^2) --verbose",
    "check:lint": "ts-standard --verbose | snazzy",
    "check:types": "tsc --noEmit && tsc -p tsconfig.types.json --outDir .temp-types && rm -rf .temp-types",
    "check:test": "npm test -- --coverage && rm -rf coverage",
    "///": "------------------------------------------------------------------",
    "test": "jest",
    "prep": "npm run _prep:init && npm run _prep:dist && npm run _prep:dist-umd",
    "build": "npm run _build:src && npm run _build:types",
    "////": "-----------------------------------------------------------------",
    "_prep:init": "rm -rf dist* && mkdir dist dist-umd",
    "_prep:dist": "cp ../../../LICENSE* README* package.json dist",
    "_prep:dist-umd": "cp ../../../LICENSE* umd/README* umd/package.json dist-umd",
    "_build:src": "rollup -c",
    "_build:types": "tsc -p tsconfig.types.json"
  },
  "devDependencies": {
    "@commitlint/cli": "^17.7.1",
    "@commitlint/config-conventional": "^17.7.0",
    "@semantic-release/changelog": "^6.0.3",
    "@semantic-release/exec": "^6.0.3",
    "@semantic-release/git": "^10.0.1",
    "@testyard/stats": "^1.4.1",
    "@tsconfig/node16": "^16.1.1",
    "@types/jest": "^29.5.4",
    "@types/semantic-release": "^20.0.1",
    "jest": "^29.6.4",
    "jest-extended": "^4.0.1",
    "rollup": "^3.28.1",
    "semantic-release": "^19.0.5",
    "semantic-release-monorepo": "^7.0.5",
    "snazzy": "^9.0.0",
    "ts-jest": "^29.1.1",
    "ts-node": "^10.9.1",
    "ts-standard": "^12.0.2",
    "tslib": "^2.6.2",
    "typescript": "^4.9.4"
  },
  "dependencies": {
    "@grandom/core": "^3.0.2",
    "@grandom/engines": "^3.1.2"
  }
}
