Files
lodestar/packages/fork-choice/package.json
2022-03-01 09:50:30 -06:00

54 lines
1.6 KiB
JSON

{
"name": "@chainsafe/lodestar-fork-choice",
"description": "A Typescript implementation eth2 fork choice",
"license": "Apache-2.0",
"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"
},
"version": "0.36.0",
"main": "lib/index.js",
"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:typedocs": "typedoc --exclude src/index.ts --out typedocs src",
"build:lib:watch": "yarn run build:lib --watch",
"build:release": "yarn clean && yarn run build && yarn run build:typedocs",
"build:types:watch": "yarn run build:types --watch",
"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 --colors -r ts-node/register 'test/unit/**/*.test.ts'",
"check-readme": "typescript-docs-verifier"
},
"dependencies": {
"@chainsafe/lodestar-beacon-state-transition": "^0.36.0",
"@chainsafe/lodestar-config": "^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"
},
"keywords": [
"ethereum",
"eth2",
"beacon",
"blockchain"
]
}