{
  "name": "sentinels",
  "version": "1.0.0",
  "description": "A Node.js package that provides a set of circuit breakers and sentinels for your application.",
  "main": "lib/index.js",
  "types": "lib/types",
  "scripts": {
    "test": "jest --config jestconfig.json --verbose --passWithNoTests --silent=false",
    "test-full": "npm ci && npm update && npm run test",
    "build": "npm run clean && npm run compile",
    "build-full": "npm ci && npm update && npm run build",
    "clean": "tsc -b --clean tsconfig.json",
    "compile": "tsc -b -v --listEmittedFiles tsconfig.json",
    "lint": "eslint -c .eslintrc --fix",
    "lint-ci": "eslint -c .eslintrc",
    "format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
    "publish-package": "npm run lint && npm run test && npm run build && npm publish --access public"
  },
  "keywords": [
    "circuit breaker",
    "sentinel",
    "node",
    "nodejs",
    "typescript"
  ],
  "repository": {
    "type": "git",
    "url": "git+github.com/mfdlabs/node-sentinels.git"
  },
  "author": "Nikita Petko <pekto@vmminfra.net>",
  "license": "Apache-2.0",
  "devDependencies": {
    "@types/jest": "^28.1.8",
    "@types/node": "^18.11.10",
    "@typescript-eslint/eslint-plugin": "^5.45.0",
    "@typescript-eslint/parser": "^5.45.0",
    "eslint": "^8.28.0",
    "eslint-config-prettier": "^8.5.0",
    "eslint-plugin-jsdoc": "^39.6.4",
    "jest": "^28.1.0",
    "prettier": "^2.8.0",
    "ts-jest": "^28.0.4",
    "typescript": "^4.9.3"
  },
  "files": [
    "lib/*",
    "!lib/tests.js"
  ]
}
