{
  "name": "binder",
  "version": "2.0.5",
  "description": "Simple, yet powerful IoC container and service locator for both, the browser and node.",
  "keywords": [
    "ioc",
    "dependency-injection",
    "service-locator",
    "inversion-of-control"
  ],
  "main": "./dist/binder.js",
  "exports": {
    "require": "./dist/binder.js",
    "default": "./dist/binder.modern.js"
  },
  "module": "dist/binder.module.js",
  "unpkg": "dist/binder.umd.js",
  "typings": "dist/index.d.ts",
  "sideEffects": false,
  "files": [
    "dist"
  ],
  "author": "Federico Vázquez <frondor.dev@gmail.com> (frondor.github.io)",
  "license": "MIT",
  "engines": {
    "node": ">=10.13.0"
  },
  "scripts": {
    "lint": "eslint src/**/*.ts --cache --fix",
    "prettier:fix": "prettier --write src",
    "build": "microbundle src/index.ts",
    "test:ci": "jest",
    "test": "jest",
    "preversion": "git merge origin/master && git push -u origin HEAD && npm ci && npm run lint && npm run build && npm run test:ci",
    "postversion": "git push && git push --tags",
    "prepare": "husky install"
  },
  "devDependencies": {
    "@types/jest": "27.0.3",
    "@types/node": "16.11.12",
    "@typescript-eslint/eslint-plugin": "5.7.0",
    "@typescript-eslint/parser": "5.7.0",
    "eslint": "7.32.0",
    "eslint-config-prettier": "8.3.0",
    "eslint-config-standard": "16.0.3",
    "eslint-plugin-import": "2.25.3",
    "eslint-plugin-jest": "25.3.0",
    "eslint-plugin-node": "11.1.0",
    "eslint-plugin-prettier": "4.0.0",
    "eslint-plugin-promise": "5.2.0",
    "husky": "7.0.4",
    "jest": "27.4.5",
    "jest-config": "27.4.5",
    "lint-staged": "12.1.2",
    "microbundle": "0.14.2",
    "prettier": "2.5.1",
    "ts-jest": "27.1.1",
    "ts-node": "10.4.0",
    "typescript": "4.5.4"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Frondor/binder.git"
  },
  "bugs": {
    "url": "https://github.com/Frondor/binder/issues"
  },
  "homepage": "https://github.com/Frondor/binder#readme",
  "lint-staged": {
    "src/**/*.{js,ts}": [
      "npm run prettier:fix",
      "npm run lint"
    ]
  }
}
