{
  "name": "microinject",
  "version": "0.12.0",
  "description": "A Tiny, standalone, library-friendly dependency injection.",
  "main": "lib/index.js",
  "types": "dts/index.d.ts",
  "scripts": {
    "clean": "rimraf lib dts",
    "format": "prettier --write \"./src/**/*.ts\"",
    "prebuild": "npm run clean",
    "build": "tsc -p src",
    "prewatch:build": "npm run clean",
    "watch:build": "tsc -p src -w",
    "watch:test": "mocha --require ./mocha.env.js --watch ./lib/**/*.spec.js ./lib/**/tests/index.js",
    "watch": "concurrently \"npm run watch:build\" \"npm run watch:test\"",
    "test": "mocha --require ./mocha.env.js ./lib/**/**.spec.js ./lib/**/tests/index.js",
    "prune": "rimraf lib/**/*.map lib/**/*.spec.js lib/**/*.map lib/**/tests",
    "examples:clean": "rimraf examples/lib",
    "preexamples:build": "npm run examples:clean",
    "examples:build": "tsc -p examples"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/RoboPhred/node-microinject.git"
  },
  "keywords": [
    "ioc",
    "inversion of control",
    "di",
    "dependency injection",
    "node"
  ],
  "author": "William Matthews",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/RoboPhred/node-microinject/issues"
  },
  "devDependencies": {
    "@types/chai": "^4.2.0",
    "@types/mocha": "^5.2.7",
    "@types/mock-require": "^2.0.0",
    "@types/node": "^13.11.0",
    "@types/sinon": "^7.0.13",
    "@types/sinon-chai": "^3.2.3",
    "@types/uuid": "^3.4.5",
    "chai": "^4.2.0",
    "concurrently": "^4.1.2",
    "mocha": "^6.2.0",
    "mock-require": "^3.0.3",
    "prettier": "^1.18.2",
    "require-dir": "^1.2.0",
    "rimraf": "^3.0.0",
    "sinon": "^7.4.1",
    "sinon-chai": "^3.3.0",
    "source-map-support": "^0.5.13",
    "typescript": "^3.8.3"
  },
  "engines": {
    "node": ">=6.13.1"
  },
  "dependencies": {
    "uuid": "^3.3.2"
  }
}
