{
  "name": "js-pert",
  "version": "2.0.1",
  "description": "PERT - Program evaluation and review technique",
  "main": "build/index.js",
  "types": "types/index.d.ts",
  "scripts": {
    "clean": "rm -rf build && rm -rf types",
    "test": "jest",
    "build": "tsc",
    "prepublish": "npm run clean && npm run test && npm run build"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/marcolanaro/js-pert.git"
  },
  "bugs": {
    "url": "https://github.com/marcolanaro/js-pert/issues"
  },
  "homepage": "https://github.com/marcolanaro/js-pert",
  "keywords": [
    "PERT",
    "AON",
    "normal distribution",
    "project management",
    "Program evaluation and review technique",
    "network",
    "Gantt"
  ],
  "author": "Marco Lanaro <marcolanaro@gmail.com> (https://github.com/marcolanaro)",
  "license": "MIT",
  "dependencies": {
    "gaussian": "^1.1.0"
  },
  "devDependencies": {
    "@types/jest": "^23.3.10",
    "husky": "^1.2.0",
    "jest": "^23.6.0",
    "pretty-quick": "^1.8.0",
    "ts-jest": "^23.10.5",
    "typescript": "^3.2.2"
  },
  "husky": {
    "hooks": {
      "pre-commit": "pretty-quick --staged && npm run build"
    }
  },
  "prettier": {
    "trailingComma": "es5",
    "singleQuote": true
  },
  "jest": {
    "preset": "ts-jest",
    "collectCoverage": true,
    "collectCoverageFrom": [
      "src/**/*.ts"
    ]
  }
}
