{
  "name": "data-structures-ts",
  "description": "A collection of data structures, built using TypeScript.",
  "version": "0.6.0",
  "main": "dist/index.js",
  "license": "MIT",
  "author": {
    "name": "John Woodruff",
    "email": "johnwoodruff91@gmail.com"
  },
  "bugs": {
    "url": "https://github.com/jbw91/data-structures-ts/issues"
  },
  "repository": "https://github.com/jbw91/data-structures-ts",
  "scripts": {
    "clean": "rimraf dist",
    "test": "rimraf coverage && jest --coverage",
    "postinstall": "node postinstall.js",
    "build": "npm test && npm run clean && tsc --project tsconfig.json",
    "docs": "rimraf docs && typedoc src/ --exclude \"**/*.spec.ts\" --out docs",
    "docs:dev": "npm run docs && http-server ./docs -o"
  },
  "devDependencies": {
    "@types/jest": "^29.5.12",
    "http-server": "^14.1.1",
    "jest": "^29.7.0",
    "rimraf": "^5.0.5",
    "ts-jest": "^29.1.2",
    "ts-node": "^10.9.2",
    "typedoc": "^0.25.13",
    "typescript": "^5.4.5"
  },
  "jest": {
    "preset": "ts-jest",
    "testEnvironment": "node",
    "collectCoverage": true,
    "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js",
      "jsx",
      "json",
      "node"
    ]
  }
}
