{
  "name": "behavior-graph",
  "version": "1.4.0",
  "main": "lib/cjs/index.js",
  "module": "lib/mjs/index.js",
  "types": "lib/mjs/index.d.ts",
  "exports": {
    ".": {
      "import": "./lib/mjs/index.js",
      "require": "./lib/cjs/index.js"
    }
  },
  "keywords": [
    "observables",
    "state",
    "architecture",
    "state management",
    "redux",
    "recoil",
    "mobx",
    "state machine",
    "store",
    "rxjs",
    "effects",
    "reactive",
    "dataflow"
  ],
  "license": "Apache-2.0",
  "devDependencies": {
    "@types/jest": "^27.4.0",
    "@types/node": "^16.18.11",
    "jest": "^27.4.5",
    "rollup": "^2.58.3",
    "ts-jest": "^27.1.2",
    "typescript": "^4.5.4"
  },
  "files": [
    "lib/**/*",
    "src/*.ts"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/yahoo/bgjs"
  },
  "scripts": {
    "test": "jest",
    "build": "rm -rf lib/* && tsc -p tsconfig-mjs.json && tsc -p tsconfig-cjs.json && ./fixup && rollup -c rollup.config.js && echo 'Build is successful!'",
    "test-coverage": "jest --coverage",
    "ci-build": "npm run build",
    "ci-test": "jest --coverage --runInBand --coverageDirectory $SD_ARTIFACTS_DIR/coverage"
  },
  "jest": {
    "preset": "ts-jest/presets/js-with-ts-esm",
    "globals": {
      "ts-jest": {
        "useESM": true
      }
    },
    "moduleNameMapper": {
      "^(\\.{1,2}/.*)\\.js$": "$1"
    }
  }
}
