Files
lodestar/packages/validator/package.json
Phil Ngo 6bd0310a96 Removing eth2 mentions in documentation and fix links (#3848)
* Remove architecture.md from docs

* Update mkdocs.yml to remove architecture.md

* Remove architecture link from readme

* Remove architecture.md links from depgraph.md

* Remove architecture overview from readme

* Remove eth2 terminology on contributing.md

* remove eth2 references from docs
2022-03-13 17:31:26 -05:00

66 lines
2.1 KiB
JSON

{
"name": "@chainsafe/lodestar-validator",
"version": "0.36.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",
"eth-consensus",
"beacon",
"blockchain"
],
"dependencies": {
"@chainsafe/abort-controller": "^3.0.1",
"@chainsafe/bls": "6.0.3",
"@chainsafe/lodestar-api": "^0.36.0",
"@chainsafe/lodestar-beacon-state-transition": "^0.36.0",
"@chainsafe/lodestar-config": "^0.36.0",
"@chainsafe/lodestar-db": "^0.36.0",
"@chainsafe/lodestar-params": "^0.36.0",
"@chainsafe/lodestar-types": "^0.36.0",
"@chainsafe/lodestar-utils": "^0.36.0",
"@chainsafe/ssz": "^0.8.20",
"bigint-buffer": "^1.1.5",
"cross-fetch": "^3.1.4",
"strict-event-emitter-types": "^2.0.0"
},
"devDependencies": {
"bigint-buffer": "^1.1.5"
}
}