{
  "name": "didi",
  "version": "11.0.0",
  "description": "Dependency Injection for JavaScript",
  "type": "module",
  "main": "./dist/index.js",
  "exports": {
    ".": "./dist/index.js",
    "./package.json": "./package.json"
  },
  "types": "./dist/index.d.ts",
  "scripts": {
    "all": "run-s lint bundle test check-types integration-test",
    "bundle": "cross-env NODE_ENV=production rollup -c --bundleConfigAsCjs",
    "lint": "eslint .",
    "check-types": "tsc --pretty --noEmit",
    "test": "c8 --reporter=lcov mocha test/*.spec.js",
    "integration-test": "(cd test/integration && mocha --import=tsx *.spec.{cjs,ts})",
    "prepare": "run-s bundle"
  },
  "repository": {
    "type": "git",
    "url": "git://github.com/nikku/didi.git"
  },
  "keywords": [
    "di",
    "inversion of control",
    "dependency",
    "injection",
    "injector"
  ],
  "engines": {
    "node": ">= 20.12"
  },
  "devDependencies": {
    "@types/chai": "^5.2.3",
    "@types/mocha": "^10.0.10",
    "@types/node": "^24.10.3",
    "@web/rollup-plugin-copy": "^0.5.1",
    "c8": "^10.1.3",
    "chai": "^6.2.1",
    "cross-env": "^10.0.0",
    "eslint": "^9.39.1",
    "eslint-plugin-bpmn-io": "^2.2.0",
    "mocha": "^11.7.5",
    "npm-run-all2": "^8.0.4",
    "rollup": "^4.53.3",
    "tsx": "^4.21.0",
    "typescript": "^5.9.3",
    "typescript-eslint": "^8.49.0"
  },
  "author": "Nico Rehwaldt <https://github.com/nikku>",
  "license": "MIT",
  "sideEffects": false,
  "files": [
    "dist"
  ]
}
