UNPKG

@chainsafe/eth2.0-utils

Version:

Utilities required across multiple lodestar packages

69 lines (68 loc) 2.05 kB
{ "name": "@chainsafe/eth2.0-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.1.1", "main": "lib/index.js", "files": [ "lib/**/*.d.ts", "lib/**/*.js", "lib/**/*.js.map" ], "scripts": { "build": "yarn build:lib && yarn build:types", "build:docs": "typedoc --exclude src/index.ts --out docs src", "build:lib": "babel src -x .ts -d lib --source-maps", "build:release": "yarn clean && yarn build && yarn build:docs", "build:types": "tsc --incremental --project tsconfig.build.json --declaration --outDir lib --emitDeclarationOnly", "check-types": "tsc --noEmit --incremental", "clean": "rm -rf lib && rm -f tsconfig.tsbuildinfo", "lint": "eslint --color --ext .ts src/", "lint:fix": "eslint --color --ext .ts src/ --fix", "prepublishOnly": "yarn build", "pretest": "yarn run check-types", "test:unit": "mocha --colors -r ./.babel-register 'test/**/*.test.ts'" }, "types": "lib/index.d.ts", "dependencies": { "@chainsafe/bit-utils": "0.1.6", "@chainsafe/eth2.0-types": "^0.2.1", "@chainsafe/ssz-type-schema": "^0.0.2", "@types/bn.js": "^4.11.5", "bcrypto": "^4.2.6", "bigint-buffer": "^1.1.5", "bn.js": "^5.0.0", "camelcase": "^5.3.1", "js-yaml": "^3.13.1", "winston": "^3.2.1", "chalk": "^2.4.2", "snake-case": "^2.1.0" }, "devDependencies": { "@types/camelcase": "^5.2.0", "@types/chai": "^4.1.7", "@types/js-yaml": "^3.12.1", "@types/mocha": "^5.2.7", "@types/snake-case": "^1.1.2", "chai": "^4.2.0", "mocha": "^6.2.0" }, "keywords": [ "beacon", "blockchain", "eth2.0", "ethereum", "serialize", "simple", "ssz" ] }