acuminous/x-pool

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "x-pool",
  "version": "1.0.0",
  "description": "A generic resource pool",
  "author": "Stephen Cresswell",
  "license": "ISC",
  "main": "index.js",
  "types": "index.d.ts",
  "keywords": [
    "generic",
    "resource",
    "pool",
    "typed",
    "TypeScript",
    "observable"
  ],
  "directories": {
    "example": "examples",
    "lib": "lib",
    "test": "test"
  },
  "scripts": {
    "coverage": "nyc --report html --reporter lcov --reporter text-summary npm test",
    "test": "zUnit",
    "lint": "eslint .",
    "prepare": "husky install"
  },
  "lint-staged": {
    "**/*.js": "eslint --fix"
  },
  "devDependencies": {
    "@types/node": "^20.5.2",
    "debug": "^4.3.4",
    "eslint": "^8.46.0",
    "eslint-config-airbnb-base": "^15.0.0",
    "eslint-plugin-import": "^2.28.0",
    "husky": "^8.0.3",
    "lint-staged": "^13.2.3",
    "nyc": "^15.1.0",
    "zunit": "^4.0.2"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/acuminous/x-pool.git"
  },
  "bugs": {
    "url": "https://github.com/acuminous/x-pool/issues"
  },
  "homepage": "https://acuminous.github.io/x-pool"
}