Files
lodestar/packages/validator/package.json
2021-12-08 16:42:01 +01:00

65 lines
2.1 KiB
JSON

{
"name": "@chainsafe/lodestar-validator",
"version": "0.32.0",
"description": "A Typescript implementation of the validator client",
"author": "ChainSafe Systems",
"license": "LGPL-3.0",
"bugs": {
"url": "https://github.com/ChainSafe/lodestar/issues"
},
"homepage": "https://github.com/ChainSafe/lodestar#readme",
"main": "lib/index.js",
"files": [
"lib/**/*.js",
"lib/**/*.js.map",
"lib/**/*.d.ts",
"*.d.ts",
"*.js"
],
"scripts": {
"clean": "rm -rf lib && rm -f *.tsbuildinfo",
"build": "tsc -p tsconfig.build.json",
"build:release": "yarn clean && yarn run build && yarn run build:typedocs",
"build:lib:watch": "yarn run build:lib --watch",
"build:typedocs": "typedoc --exclude src/index.ts --out typedocs src",
"build:types:watch": "yarn run build:types --watch",
"check-types": "tsc",
"lint": "eslint --color --ext .ts src/ test/",
"lint:fix": "yarn run lint --fix",
"pretest": "yarn run check-types",
"test:unit": "nyc --cache-dir .nyc_output/.cache -e .ts mocha 'test/unit/**/*.test.ts'",
"test": "yarn test:unit",
"test:e2e": "yarn run download-spec-tests && mocha 'test/spec/**/*.test.ts'",
"download-spec-tests": "node -r ts-node/register test/spec/downloadTests.ts",
"coverage": "codecov -F lodestar-validator",
"check-readme": "typescript-docs-verifier"
},
"repository": {
"type": "git",
"url": "git+https://github.com:ChainSafe/lodestar.git"
},
"keywords": [
"ethereum",
"eth2",
"beacon",
"blockchain"
],
"dependencies": {
"@chainsafe/abort-controller": "^3.0.1",
"@chainsafe/bls": "6.0.3",
"@chainsafe/lodestar-api": "^0.32.0",
"@chainsafe/lodestar-beacon-state-transition": "^0.32.0",
"@chainsafe/lodestar-config": "^0.32.0",
"@chainsafe/lodestar-db": "^0.32.0",
"@chainsafe/lodestar-params": "^0.32.0",
"@chainsafe/lodestar-types": "^0.32.0",
"@chainsafe/lodestar-utils": "^0.32.0",
"@chainsafe/ssz": "^0.8.20",
"bigint-buffer": "^1.1.5",
"strict-event-emitter-types": "^2.0.0"
},
"devDependencies": {
"bigint-buffer": "^1.1.5"
}
}