{
  "name": "actor",
  "version": "2.3.1",
  "description": " Actor based concurrency primitives for managing effects",
  "keywords": [
    "actor",
    "generators",
    "async",
    "task",
    "effect",
    "fx"
  ],
  "scripts": {
    "test": "mocha test/*.spec.js",
    "test:web": "playwright-test test/*.spec.js --cov && nyc report",
    "test:node": "c8 --check-coverage --branches 100 --functions 100 --lines 100 mocha test/*.spec.js",
    "coverage": "c8 --reporter=html mocha test/test-*.js && npm_config_yes=true npx st -d coverage -p 8080",
    "typecheck": "tsc --build",
    "prepare": "tsc --build"
  },
  "type": "module",
  "main": "./src/lib.js",
  "types": "./dist/src/lib.d.ts",
  "exports": {
    ".": {
      "import": "./src/lib.js",
      "types": "./dist/src/lib.d.ts"
    }
  },
  "files": [
    "src",
    "dist/src"
  ],
  "c8": {
    "exclude": [
      "test/**",
      "dist/**"
    ],
    "reports-dir": ".coverage"
  },
  "nyc": {
    "exclude": [
      "test/**",
      "dist/**"
    ],
    "report-dir": ".coverage"
  },
  "devDependencies": {
    "typescript": "^4.5.5",
    "@types/mocha": "^9.1.0",
    "@types/chai": "^4.3.0",
    "mocha": "^9.2.0",
    "chai": "^4.3.6",
    "nyc": "^15.1.0",
    "playwright-test": "^7.2.2",
    "c8": "^7.11.0"
  },
  "repository": {
    "type": "git",
    "url": "git://github.com/gozala/actor.git"
  },
  "license": "(Apache-2.0 AND MIT)"
}
