martinheidegger/flexlock-cb

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "flexlock-cb",
  "version": "2.2.1",
  "description": "A locking library like [`mutexify`](https://github.com/mafintosh/mutexify), [`mutex-js`](https://github.com/danielglennross/mutex-js), [`await-lock`](https://www.npmjs.com/package/await-lock), and [many more](https://www.npmjs.com/search?q=promise+lock), but with more flexibility in how to use it to be both sturdier and very quick.",
  "main": "index.js",
  "scripts": {
    "test": "npm run test:lint && npm run test:unit",
    "test:lint": "standard",
    "test:unit": "tap test.js",
    "test:ci": "npm run test:lint && npm run test:unit -- --cov --coverage-report=lcov",
    "release": "standard-version"
  },
  "keywords": [
    "promise",
    "lock",
    "async"
  ],
  "author": "Martin Heidegger <martin.heidegger@gmail.com>",
  "license": "MIT",
  "devDependencies": {
    "standard": "^14.3.4",
    "standard-version": "^9.0.0",
    "tap": "^14.10.8"
  },
  "directories": {
    "test": "test"
  },
  "dependencies": {},
  "repository": {
    "type": "git",
    "url": "git+https://github.com/martinheidegger/flexlock-cb.git"
  },
  "bugs": {
    "url": "https://github.com/martinheidegger/flexlock-cb/issues"
  },
  "homepage": "https://github.com/martinheidegger/flexlock-cb#readme"
}