{
  "name": "topology-runner",
  "version": "0.9.0",
  "description": "Run a topology consisting of a directed acyclic graph",
  "author": "GovSpend",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "repository": "git://github.com/smartprocure/topology-runner.git",
  "scripts": {
    "prepare": "npm run lint && npm test && npm run build",
    "clean": "rm -rf dist",
    "build": "npm run clean && tsc --declaration",
    "test": "jest",
    "lint": "eslint src/**"
  },
  "keywords": [
    "topology",
    "dag",
    "directed",
    "acyclic",
    "graph",
    "runner"
  ],
  "prettier": {
    "semi": false,
    "singleQuote": true,
    "trailingComma": "es5"
  },
  "license": "ISC",
  "dependencies": {
    "eventemitter3": "^4.0.7",
    "lodash": "^4.17.21",
    "make-error": "^1.3.6"
  },
  "devDependencies": {
    "@types/jest": "^27.5.1",
    "@types/lodash": "^4.14.182",
    "@types/node": "^17.0.34",
    "@typescript-eslint/eslint-plugin": "^5.25.0",
    "eslint": "^8.15.0",
    "jest": "^28.1.0",
    "prettier": "^2.6.2",
    "ts-jest": "^28.0.2",
    "ts-node": "^10.7.0",
    "typescript": "^4.6.4"
  }
}
