Files
lodestar/packages/utils/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

62 lines
1.7 KiB
JSON

{
"name": "@chainsafe/lodestar-utils",
"description": "Utilities required across multiple lodestar packages",
"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 build && yarn build:typedocs",
"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": "mocha 'test/**/*.test.ts'",
"check-readme": "typescript-docs-verifier"
},
"types": "lib/index.d.ts",
"dependencies": {
"@chainsafe/abort-controller": "^3.0.1",
"@chainsafe/as-sha256": "^0.2.4",
"any-signal": "2.1.2",
"bigint-buffer": "^1.1.5",
"case": "^1.6.3",
"chalk": "^4.1.2",
"js-yaml": "^3.13.1",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.5",
"winston-transport": "^4.3.0"
},
"devDependencies": {
"@types/js-yaml": "^3.12.1",
"@types/triple-beam": "^1.3.2",
"triple-beam": "^1.3.0"
},
"keywords": [
"ethereum",
"eth-consensus",
"beacon",
"blockchain"
]
}