mirror of
https://github.com/AtHeartEngineering/lodestar.git
synced 2026-04-23 03:00:29 -04:00
98 lines
3.1 KiB
JSON
98 lines
3.1 KiB
JSON
{
|
|
"name": "@chainsafe/lodestar-cli",
|
|
"version": "0.36.0",
|
|
"description": "Command line interface for other packages",
|
|
"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/**/*.d.ts",
|
|
"lib/**/*.js",
|
|
"lib/**/*.js.map",
|
|
".git-data.json"
|
|
],
|
|
"bin": {
|
|
"lodestar": "lib/index.js"
|
|
},
|
|
"scripts": {
|
|
"clean": "rm -rf lib && rm -f *.tsbuildinfo",
|
|
"build": "tsc -p tsconfig.build.json && yarn write-git-data",
|
|
"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",
|
|
"build:refdocs": "ts-node docsgen docs/cli.md",
|
|
"write-git-data": "node lib/util/gitData/writeGitData.js",
|
|
"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:e2e": "mocha --timeout 30000 'test/e2e/**/*.test.ts'",
|
|
"test": "yarn test:unit && yarn test:e2e",
|
|
"coverage": "codecov -F lodestar",
|
|
"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/as-sha256": "^0.3.1",
|
|
"@chainsafe/bls": "6.0.3",
|
|
"@chainsafe/bls-keygen": "^0.3.0",
|
|
"@chainsafe/bls-keystore": "^2.0.0",
|
|
"@chainsafe/blst": "^0.2.4",
|
|
"@chainsafe/discv5": "^0.6.7",
|
|
"@chainsafe/lodestar": "^0.36.0",
|
|
"@chainsafe/lodestar-light-client": "^0.36.0",
|
|
"@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-keymanager-server": "^0.36.0",
|
|
"@chainsafe/lodestar-params": "^0.36.0",
|
|
"@chainsafe/lodestar-types": "^0.36.0",
|
|
"@chainsafe/lodestar-utils": "^0.36.0",
|
|
"@chainsafe/lodestar-validator": "^0.36.0",
|
|
"@chainsafe/ssz": "^0.9.1",
|
|
"@types/lockfile": "^1.0.1",
|
|
"bip39": "^3.0.2",
|
|
"deepmerge": "^4.2.2",
|
|
"ethers": "^5.0.2",
|
|
"expand-tilde": "^2.0.2",
|
|
"find-up": "^5.0.0",
|
|
"got": "^11.5.1",
|
|
"inquirer": "^8.1.3",
|
|
"js-yaml": "^3.14.0",
|
|
"lockfile": "^1.0.4",
|
|
"lodash": "^4.17.15",
|
|
"multiaddr": "^10.0.1",
|
|
"peer-id": "^0.15.3",
|
|
"rimraf": "^3.0.0",
|
|
"source-map-support": "^0.5.19",
|
|
"uuidv4": "^6.1.1",
|
|
"yargs": "^16.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/expand-tilde": "^2.0.0",
|
|
"@types/got": "^9.6.11",
|
|
"@types/inquirer": "^7.3.0",
|
|
"@types/js-yaml": "^3.12.5",
|
|
"@types/lodash": "^4.14.157",
|
|
"@types/rimraf": "^3.0.2",
|
|
"@types/yargs": "^15.0.9"
|
|
}
|
|
}
|