{
  "name": "@lodestar/params",
  "version": "1.4.2",
  "description": "Chain parameters required for lodestar",
  "author": "ChainSafe Systems",
  "license": "Apache-2.0",
  "bugs": {
    "url": "https://github.com/ChainSafe/lodestar/issues"
  },
  "homepage": "https://github.com/ChainSafe/lodestar#readme",
  "type": "module",
  "exports": {
    ".": {
      "import": "./lib/index.js"
    },
    "./presets/mainnet": {
      "import": "./lib/presets/mainnet.js"
    },
    "./presets/minimal": {
      "import": "./lib/presets/minimal.js"
    },
    "./presets/gnosis": {
      "import": "./lib/presets/gnosis.js"
    },
    "./setPreset": {
      "import": "./lib/setPreset.js"
    }
  },
  "types": "lib/index.d.ts",
  "files": [
    "lib/**/*.js",
    "lib/**/*.js.map",
    "lib/**/*.d.ts",
    "*.d.ts",
    "*.js"
  ],
  "typesVersions": {
    "*": {
      "*": [
        "*",
        "lib/*",
        "lib/*/index"
      ]
    }
  },
  "scripts": {
    "clean": "rm -rf lib && rm -f *.tsbuildinfo",
    "build": "tsc -p tsconfig.build.json",
    "build:release": "yarn clean && yarn build",
    "build:lib:watch": "yarn run build:lib --watch",
    "build:types:watch": "yarn run build:types --watch",
    "check-build": "node -e \"(async function() { await import('./lib/index.js') })()\"",
    "check-types": "tsc",
    "lint": "eslint --color --ext .ts src/ test/",
    "lint:fix": "yarn run lint --fix",
    "test": "yarn run check-types",
    "test:unit": "mocha 'test/unit/**/*.test.ts'",
    "test:browsers": "yarn karma start karma.config.cjs",
    "test:e2e": "mocha 'test/e2e/**/*.test.ts'",
    "check-readme": "typescript-docs-verifier"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com:ChainSafe/lodestar.git"
  },
  "keywords": [
    "ethereum",
    "eth-consensus",
    "beacon",
    "blockchain"
  ],
  "devDependencies": {
    "@types/js-yaml": "^4.0.3",
    "axios": "^0.21.0",
    "js-yaml": "^4.1.0"
  }
}
