{
  "name": "@basementuniverse/async",
  "version": "1.1.0",
  "description": "Async versions of common list functions",
  "main": "build/index.js",
  "scripts": {
    "build": "tsc",
    "test": "npx jest ./test",
    "docs": "npx typedoc --plugin typedoc-plugin-markdown --out docs index.ts"
  },
  "keywords": [
    "async",
    "map",
    "filter",
    "reduce",
    "forEach",
    "find",
    "findIndex"
  ],
  "author": "Gordon Larrigan <gordonlarrigan@gmail.com> (https://gordonlarrigan.com)",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/basementuniverse/async.git"
  },
  "devDependencies": {
    "@types/jest": "^29.5.14",
    "jest": "^29.7.0",
    "ts-jest": "^29.2.5",
    "typescript": "^5.7.2"
  },
  "jest": {
    "preset": "ts-jest",
    "testEnvironment": "node",
    "globals": {
      "ts-jest": {
        "tsConfig": "tsconfig.jest.json"
      }
    }
  }
}
