{
  "name": "pertain",
  "version": "0.2.0",
  "publishConfig": {
    "access": "public"
  },
  "description": "Automated pub/sub across project dependencies. Run code from any installed package based on declarative rules in package.json",
  "main": "pertainCjs.js",
  "typings": "build/main/index.d.ts",
  "module": "build/module/index.js",
  "repository": "https://github.com/zetlen/pertain.git",
  "keywords": [
    "pub/sub",
    "extensibility",
    "interceptors",
    "di",
    "injection"
  ],
  "scripts": {
    "build": "run-s clean && run-p build:*",
    "build:main": "tsc -p tsconfig.json",
    "build:module": "tsc -p tsconfig.module.json",
    "ci:all": "run-s clean ci:typescript test:lint ci:unit ci:sendcov",
    "ci:typescript": "run-s \"build:* -- --noEmit --extendedDiagnostics --traceResolution\"",
    "ci:sendcov": "codecov",
    "ci:unit": "jest --runInBand --no-bail",
    "fix": "run-s fix:*",
    "fix:prettier": "prettier \"src/**/*.ts\" --write",
    "fix:tslint": "tslint --fix --project .",
    "test": "run-s build test:*",
    "test:lint": "tslint --project . && prettier \"src/**/*.ts\" --list-different",
    "test:unit": "jest",
    "test:universal": "node testCjs.js",
    "watch": "run-s \"test:unit -- --watch\"",
    "cov:html": "npm run test && open-cli coverage/lcov-report/index.html",
    "version": "standard-version -a",
    "reset": "git clean -dfx && git reset --hard && npm i",
    "clean": "rimraf build test",
    "prepare-release": "run-s reset test version"
  },
  "author": "James Zetlen <zetlen@gmail.com",
  "license": "(OSL-3.0 OR AFL-3.0)",
  "bugs": {
    "url": "https://github.com/zetlen/pertain/issues"
  },
  "homepage": "https://github.com/zetlen/pertain",
  "husky": {
    "hooks": {
      "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
    }
  },
  "engines": {
    "node": ">=10"
  },
  "dependencies": {
    "debug": "~4.1.1",
    "dot-prop": "^5.2.0",
    "pkg-dir": "^4.2.0",
    "resolve-pkg": "^2.0.0"
  },
  "devDependencies": {
    "@commitlint/cli": "^8.2.0",
    "@commitlint/config-conventional": "^8.2.0",
    "@types/debug": "^4.1.5",
    "@types/jest": "^25.2.1",
    "@types/node": "^13.13.2",
    "codecov": "^3.5.0",
    "husky": "^4.2.5",
    "jest": "^25.4.0",
    "npm-run-all": "^4.1.5",
    "open-cli": "^6.0.1",
    "prettier": "^2.0.5",
    "rimraf": "^3.0.2",
    "standard-version": "^7.1.0",
    "ts-jest": "^25.4.0",
    "tslint": "^6.1.1",
    "tslint-config-prettier": "^1.18.0",
    "typescript": "^3.8.3"
  },
  "prettier": {
    "singleQuote": true
  }
}
