UNPKG

@bug-fix/drand-client

Version:

A client to the drand randomness beacon network.

78 lines (77 loc) 2.06 kB
{ "name": "@bug-fix/drand-client", "version": "1.2.6-fix.11", "description": "A client to the drand randomness beacon network.", "main": "./build/index.cjs", "module": "./build/index.mjs", "types": "./build/index.d.cts", "exports": { "require": { "types": "./build/index.d.cts", "default": "./build/index.cjs" }, "import": { "types": "./build/index.d.mts", "default": "./build/index.mjs" } }, "files": [ "build", "lib" ], "scripts": { "clean": "rm -rf ./build/* && rm -rf lib/version.ts", "precompile": "node -p \"'export const LIB_VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > lib/version.ts", "compile": "npm run precompile && pkgroll --src lib --dist build", "publish:github": "npm publish --registry https://npm.pkg.github.com", "test": "jest --verbose ./test/**.test.ts", "lint": "eslint ./{lib,test}/*.ts", "lint:fix": "eslint ./{lib,test}/*.ts --fix" }, "author": "Alan Shaw", "license": "(Apache-2.0 OR MIT)", "devDependencies": { "@types/jest": "^29.5.3", "@types/node-fetch": "^3.0.2", "@typescript-eslint/eslint-plugin": "^6.1.0", "abort-controller": "^3.0.0", "eslint": "^8.45.0", "jest": "^29.6.1", "jest-fetch-mock": "^3.0.3", "node-fetch": "^3.3.1", "pkgroll": "^2.5.1", "ts-jest": "^29.1.1", "ts-node": "^10.9.1", "typescript": "^5.1.6", "typescript-eslint": "^0.0.1-alpha.0" }, "dependencies": { "@babel/traverse": "^7.23.2", "@noble/curves": "^1.4.0", "buffer": "^6.0.3" }, "repository": { "type": "git", "url": "git+https://github.com/drand/drand-client.git" }, "bugs": { "url": "https://github.com/drand/drand-client/issues" }, "homepage": "https://github.com/drand/drand-client#readme", "engines": { "node": ">= 10.4.0" }, "browserslist": [ "> 1%", "last 2 versions" ], "keywords": [ "drand", "random", "randomness", "client", "bls", "bls12381", "bls12-381" ] }