{
  "name": "@david.uhlir/mutex",
  "version": "1.3.11",
  "description": "Mutex for node.js apllications",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "scripts": {
    "build": "rimraf ./dist && tsc",
    "prettier-check": "prettier-check --config .prettierrc.json 'lib/**/*.ts'",
    "prettier-format": "prettier --config .prettierrc.json 'lib/**/*.ts' --write",
    "test": "npm run build && class=Mutex npm run test:single-class && class=SharedMutex npm run test:single-class",
    "test:mutex": "npm run build && class=Mutex npm run test:single-class",
    "test:shared-mutex": "npm run build && class=SharedMutex npm run test:single-class",
    "test:single-class": "ts-mocha --timeout 10000 --type-check -p ./tsconfig.json tests/**/*.spec.ts",
    "build:release": "rimraf ./dist && tsc --p tsconfig.release.json",
    "test:release": "npm run build:release && class=Mutex npm run test:release:single-class && class=SharedMutex npm run test:release:single-class ",
    "test:release:single-class": "ts-mocha --timeout 10000 --type-check -p ./tsconfig.json tests/**/*.spec.ts",
    "release": "./scripts/release.sh",
    "test:debugger": "npm run build && class=Mutex ts-mocha --timeout 10000 --type-check -p ./tsconfig.json tests/debugger.spec.ts"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/daviduhlir/mutex.git"
  },
  "keywords": [
    "promise",
    "async",
    "cluster",
    "workers",
    "node",
    "mutex",
    "lock",
    "ipc",
    "util",
    "synchronization",
    "processes"
  ],
  "author": "David Uhlíř",
  "license": "ISC",
  "devDependencies": {
    "@types/mocha": "^10.0.0",
    "@types/node": "^18.11.9",
    "chai": "^4.3.6",
    "mocha": "^10.0.0",
    "prettier": "^2.6.2",
    "prettier-check": "^2.0.0",
    "rimraf": "^2.6.2",
    "ts-mocha": "^10.0.0",
    "typescript": "^5.5.4"
  },
  "engines": {
    "node": "^12.17.0 || >=13.14.0"
  }
}
