122 lines
3.3 KiB
JSON
122 lines
3.3 KiB
JSON
{
|
|
"name": "@chainsafe/bls",
|
|
"version": "7.1.0",
|
|
"description": "Implementation of bls signature verification for ethereum 2.0",
|
|
"engines": {
|
|
"node": ">=14.8.0"
|
|
},
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"import": "./lib/index.js"
|
|
},
|
|
"./types": {
|
|
"import": "./lib/types.js"
|
|
},
|
|
"./errors": {
|
|
"import": "./lib/errors.js"
|
|
},
|
|
"./constants": {
|
|
"import": "./lib/constants.js"
|
|
},
|
|
"./getImplementation": {
|
|
"import": "./lib/getImplementation.js"
|
|
},
|
|
"./switchable": {
|
|
"import": "./lib/switchable.js"
|
|
},
|
|
"./blst-native": {
|
|
"import": "./lib/blst-native/index.js"
|
|
},
|
|
"./herumi": {
|
|
"import": "./lib/herumi/index.js"
|
|
}
|
|
},
|
|
"types": "lib/index.d.ts",
|
|
"typesVersions": {
|
|
"*": {
|
|
"*": [
|
|
"*",
|
|
"lib/*",
|
|
"lib/*/index"
|
|
]
|
|
}
|
|
},
|
|
"module": "./lib/index.js",
|
|
"browser": "./lib/herumi.js",
|
|
"homepage": "https://github.com/chainsafe/bls",
|
|
"author": "ChainSafe Systems",
|
|
"license": "Apache-2.0",
|
|
"files": [
|
|
"lib/**/*.js",
|
|
"lib/**/*.js.map",
|
|
"lib/**/*.d.ts",
|
|
"*.d.ts",
|
|
"*.js"
|
|
],
|
|
"keywords": [
|
|
"ethereum",
|
|
"serenity",
|
|
"signature verification",
|
|
"bls"
|
|
],
|
|
"scripts": {
|
|
"clean": "rm -rf lib && rm -rf dist && rm -f tsconfig.tsbuildinfo",
|
|
"check-build": "node -e \"(async function() { await import('./lib/index.js') })()\"",
|
|
"build": "tsc --incremental --project tsconfig.build.json",
|
|
"lint": "eslint --color --ext .ts src/ test/",
|
|
"lint:fix": "yarn run lint --fix",
|
|
"prepublishOnly": "yarn build",
|
|
"test:web": "karma start karma.conf.cjs",
|
|
"test:unit": "mocha 'test/unit/**/*.test.ts'",
|
|
"test:coverage": "nyc --cache-dir .nyc_output/.cache -r lcov -e .ts mocha 'test/unit/**/*.test.ts' && nyc report",
|
|
"test:spec": "mocha 'test/spec/**/*.test.ts'",
|
|
"test": "yarn run test:unit && yarn run test:spec",
|
|
"download-test-cases": "ts-node-esm test/downloadSpecTests.ts",
|
|
"coverage": "codecov -F bls",
|
|
"benchmark": "ts-node-esm benchmark",
|
|
"benchmark:all": "cd benchmark && yarn install && yarn benchmark:all"
|
|
},
|
|
"dependencies": {
|
|
"@chainsafe/bls-keygen": "^0.4.0",
|
|
"@chainsafe/blst": "^0.2.4",
|
|
"bls-eth-wasm": "^0.4.8",
|
|
"randombytes": "^2.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@chainsafe/eslint-plugin-node": "^11.2.3",
|
|
"@chainsafe/lodestar-spec-test-util": "^0.18.0",
|
|
"@chainsafe/threads": "^1.9.0",
|
|
"@types/chai": "^4.2.9",
|
|
"@types/mocha": "^8.0.4",
|
|
"@types/randombytes": "^2.0.0",
|
|
"@typescript-eslint/eslint-plugin": "^4.31.1",
|
|
"@typescript-eslint/parser": "^4.31.1",
|
|
"buffer": "^6.0.3",
|
|
"chai": "^4.3.6",
|
|
"eslint": "^7.14.0",
|
|
"eslint-plugin-import": "^2.20.1",
|
|
"eslint-plugin-prettier": "^3.1.4",
|
|
"karma": "^6.3.18",
|
|
"karma-chai": "^0.1.0",
|
|
"karma-chrome-launcher": "^3.1.0",
|
|
"karma-cli": "^2.0.0",
|
|
"karma-mocha": "^2.0.1",
|
|
"karma-spec-reporter": "^0.0.32",
|
|
"karma-webpack": "^5.0.0",
|
|
"mocha": "^9.2.2",
|
|
"nyc": "^15.0.0",
|
|
"prettier": "^2.1.2",
|
|
"resolve-typescript-plugin": "^1.2.0",
|
|
"ts-loader": "^9.2.8",
|
|
"ts-node": "^10.7.0",
|
|
"typescript": "^4.6.3",
|
|
"webpack": "^5.72.0",
|
|
"webpack-cli": "^4.9.2"
|
|
},
|
|
"resolutions": {
|
|
"mocha": "^9.2.2",
|
|
"v8-profiler-next": "1.3.0"
|
|
}
|
|
}
|