{
  "name": "systemic",
  "version": "4.0.0",
  "description": "A minimal dependency injection library for node",
  "main": "index.js",
  "typings": "index.d.ts",
  "scripts": {
    "qa": "npm run lint && npm test",
    "lint": "lint-staged .",
    "test": "node test",
    "coverage": "nyc --report html --reporter lcov --reporter text-summary node test"
  },
  "keywords": [
    "dependency",
    "injection",
    "context",
    "inversion of control",
    "graceful",
    "start up",
    "shutdown",
    "ioc",
    "boot"
  ],
  "author": "GuideSmiths Ltd",
  "license": "ISC",
  "devDependencies": {
    "chai": "^4.2.0",
    "debug": "^4.3.3",
    "eslint": "^8.4.1",
    "eslint-config-prettier": "^8.3.0",
    "eslint-plugin-prettier": "^4.0.0",
    "husky": "^4.3.8",
    "lint-staged": "^12.1.2",
    "nyc": "^15.1.0",
    "prettier": "2.5.1",
    "zunit": "^3.2.1"
  },
  "dependencies": {
    "async": "^3.2.2",
    "chance": "^1.1.8",
    "require-all": "^3.0.0",
    "toposort-class": "^1.0.1"
  },
  "directories": {
    "example": "examples"
  },
  "engines": {
    "node": ">=12.0.0"
  },
  "lint-staged": {
    "**/*": "prettier --write --ignore-unknown"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/guidesmiths/systemic.git"
  },
  "bugs": {
    "url": "https://github.com/guidesmiths/systemic/issues"
  },
  "homepage": "https://guidesmiths.github.io/systemic/",
  "husky": {
    "hooks": {
      "pre-commit": "npm run qa"
    }
  }
}
