{
  "name": "@lodestar/db",
  "version": "1.4.2",
  "description": "DB modules of Lodestar",
  "author": "ChainSafe Systems",
  "homepage": "https://github.com/ChainSafe/lodestar#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/ChainSafe/lodestar.git"
  },
  "bugs": {
    "url": "https://github.com/ChainSafe/lodestar/issues"
  },
  "type": "module",
  "exports": "./lib/index.js",
  "types": "./lib/index.d.ts",
  "files": [
    "lib/**/*.d.ts",
    "lib/**/*.js",
    "lib/**/*.js.map",
    "*.d.ts",
    "*.js"
  ],
  "scripts": {
    "clean": "rm -rf lib && rm -f *.tsbuildinfo",
    "build": "tsc -p tsconfig.build.json",
    "build:lib:watch": "yarn run build:lib --watch",
    "build:release": "yarn clean && yarn run build",
    "build:types:watch": "yarn run build:types --watch",
    "check-build": "node -e \"(async function() { await import('./lib/index.js') })()\"",
    "check-types": "tsc",
    "coverage": "codecov -F lodestar-fork-choice",
    "lint": "eslint --color --ext .ts src/ test/",
    "lint:fix": "yarn run lint --fix",
    "pretest": "yarn run check-types",
    "test": "yarn test:unit",
    "test:unit": "mocha 'test/unit/**/*.test.ts'",
    "check-readme": "typescript-docs-verifier"
  },
  "dependencies": {
    "@chainsafe/ssz": "^0.9.2",
    "@lodestar/config": "^1.4.2",
    "@lodestar/utils": "^1.4.2",
    "@types/levelup": "^4.3.3",
    "it-all": "^2.0.0",
    "level": "^8.0.0"
  }
}
