{
  "_from": "async-mutex@^0.2.6",
  "_id": "async-mutex@0.2.6",
  "_inBundle": false,
  "_integrity": "sha512-Hs4R+4SPgamu6rSGW8C7cV9gaWUKEHykfzCCvIRuaVv636Ju10ZdeUbvb4TBEW0INuq2DHZqXbK4Nd3yG4RaRw==",
  "_location": "/async-mutex",
  "_phantomChildren": {},
  "_requested": {
    "type": "range",
    "registry": true,
    "raw": "async-mutex@^0.2.6",
    "name": "async-mutex",
    "escapedName": "async-mutex",
    "rawSpec": "^0.2.6",
    "saveSpec": null,
    "fetchSpec": "^0.2.6"
  },
  "_requiredBy": [
    "/"
  ],
  "_resolved": "https://registry.npmjs.org/async-mutex/-/async-mutex-0.2.6.tgz",
  "_shasum": "0d7a3deb978bc2b984d5908a2038e1ae2e54ff40",
  "_spec": "async-mutex@^0.2.6",
  "_where": "/Users/marco/Desktop/Projects/smart-home/node/essentials",
  "author": {
    "name": "Christian Speckner",
    "email": "cnspeckn@googlemail.com",
    "url": "https://github.com/DirtyHairy/"
  },
  "bugs": {
    "url": "https://github.com/DirtyHairy/async-mutex/issues"
  },
  "bundleDependencies": false,
  "dependencies": {
    "tslib": "^2.0.0"
  },
  "deprecated": false,
  "description": "A mutex for guarding async workflows",
  "devDependencies": {
    "@sinonjs/fake-timers": "^6.0.1",
    "@types/mocha": "^8.0.4",
    "@types/node": "^14.14.10",
    "@types/sinonjs__fake-timers": "^6.0.2",
    "@typescript-eslint/eslint-plugin": "^4.8.2",
    "@typescript-eslint/parser": "^4.8.2",
    "coveralls": "^3.1.0",
    "eslint": "^7.14.0",
    "import-sort-style-eslint": "^6.0.0",
    "mocha": "^8.2.1",
    "nyc": "^15.1.0",
    "prettier": "^2.2.0",
    "prettier-plugin-import-sort": "^0.0.6",
    "rollup": "^2.33.3",
    "ts-node": "^9.0.0",
    "typescript": "^4.1.2"
  },
  "eslintConfig": {
    "root": true,
    "parser": "@typescript-eslint/parser",
    "plugins": [
      "@typescript-eslint"
    ],
    "extends": [
      "eslint:recommended",
      "plugin:@typescript-eslint/eslint-recommended",
      "plugin:@typescript-eslint/recommended"
    ],
    "rules": {
      "eqeqeq": "error",
      "@typescript-eslint/no-namespace": "off",
      "no-async-promise-executor": "off"
    }
  },
  "exports": {
    ".": {
      "import": "./index.mjs",
      "require": "./lib/index.js",
      "default": "./lib/index.js"
    },
    "./package.json": "./package.json"
  },
  "files": [
    "lib",
    "es6",
    "index.mjs"
  ],
  "homepage": "https://github.com/DirtyHairy/async-mutex#readme",
  "importSort": {
    ".js, .jsx, .ts, .tsx": {
      "style": "eslint",
      "parser": "typescript"
    }
  },
  "keywords": [
    "mutex",
    "async"
  ],
  "license": "MIT",
  "main": "lib/index.js",
  "module": "es6/index.js",
  "name": "async-mutex",
  "prettier": {
    "printWidth": 120,
    "tabWidth": 4,
    "singleQuote": true,
    "parser": "typescript"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/DirtyHairy/async-mutex.git"
  },
  "scripts": {
    "build": "tsc && tsc -p tsconfig.es6.json && tsc -p tsconfig.mjs.json && rollup -o index.mjs mjs/index.js",
    "coveralls": "cat ./coverage/lcov.info | coveralls",
    "lint": "eslint src/**/*.ts test/**/*.ts",
    "prepublishOnly": "yarn test && yarn build",
    "test": "yarn lint && nyc --reporter=text --reporter=html --reporter=lcov mocha test/*.ts"
  },
  "types": "lib/index.d.ts",
  "version": "0.2.6"
}
