{
  "name": "pigly",
  "version": "2.1.0",
  "main": "dist/cjs/index.js",
  "typings": "dist/cjs/index.d.ts",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/pigly-di/pigly.git"
  },
  "author": {
    "name": "Meirion Hughes",
    "url": "https://github.com/MeirionHughes"
  },
  "devDependencies": {
    "@types/chai": "^4.2.16",
    "@types/mocha": "^8.2.2",
    "@types/node": "^22.19.11",
    "chai": "^4.3.4",
    "codecov": "^3.8.1",
    "cross-env": "^7.0.3",
    "mocha": "^8.3.2",
    "nyc": "^15.1.0",
    "source-map-support": "^0.5.19",
    "ts-node": "^10.9.2",
    "typescript": "^5.9.3"
  },
  "scripts": {
    "build": "npm run build:cjs",
    "build:esm": "tsc --build tsconfig.build.esm.json",
    "build:cjs": "tsc --build tsconfig.build.cjs.json",
    "build:pack": "node ./gen-package.mjs",
    "test": "cross-env NODE_OPTIONS=--no-experimental-strip-types nyc mocha test/**/*.spec.ts",
    "coverage": "codecov --flags pigly"
  },
  "nyc": {
    "exclude": [
      "node_modules/",
      "test/"
    ],
    "extension": [
      ".ts"
    ],
    "require": [
      "source-map-support/register",
      "ts-node/register"
    ],
    "reporter": [
      "text-summary",
      "html",
      "lcov"
    ],
    "sourceMap": true,
    "instrument": true
  },
  "files": [
    "/dist/*",
    "README.md"
  ],
  "keywords": [
    "dependency-injection",
    "dependency",
    "injection",
    "DI",
    "IOC",
    "container",
    "typescript",
    "plugin"
  ],
  "gitHead": "37e1ca9c9dc780c9f4d9881091c28a0987054117"
}
