{
  "name": "distriprob",
  "version": "0.2.0",
  "description": "A library for calculating the PDF, CDFs, and quantile function values of common probability distributions",
  "main": "lib/index.js",
  "typings": "lib/index",
  "scripts": {
    "build": "npm run typescript-transpile && npm run bundle",
    "preversion": "npm run typescript-transpile && npm run bundle && npm test",
    "version": "git add --all",
    "postversion": "git push && git push --tags && npm publish",
    "test": "./node_modules/mocha/bin/mocha \"./lib/test/**/*.js\" --reporter \"nyan\"",
    "ci-test": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- -R tap \"./lib/test/**/*.js\" > test.tap && ./node_modules/istanbul/lib/cli.js report clover",
    "typescript-transpile": "rm -rf lib && ./node_modules/typescript/bin/tsc --project .",
    "install-typings": "./node_modules/typings/dist/bin.js install",
    "bundle": "rm -f ./bundle.js && ./node_modules/browserify/bin/cmd.js ./lib/index.js --standalone distriprob --exclude crypto> ./bundle.js"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/zachmart/distriprob.git"
  },
  "keywords": [
    "probability",
    "distribution",
    "pdf",
    "cdf",
    "density",
    "cumulative",
    "quantile",
    "normal",
    "gaussian",
    "student's",
    "t",
    "F",
    "chi-square",
    "gamma",
    "beta",
    "poisson",
    "binomial",
    "hypergeometric",
    "random",
    "number",
    "generator"
  ],
  "author": "Zachary Martin",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/zachmart/distriprob/issues"
  },
  "homepage": "https://github.com/zachmart/distriprob#readme",
  "devDependencies": {
    "browserify": "^13.1.0",
    "casual": "^1.5.3",
    "chai": "^3.5.0",
    "istanbul": "^0.4.4",
    "mocha": "^3.0.2",
    "pem": "^1.8.3",
    "typescript": "^2.0.0",
    "typings": "^1.3.2"
  },
  "dependencies": {
    "seedrandom": "^2.4.2",
    "webworker-threads": "^0.7.8"
  }
}
