UNPKG

@mattrglobal/bbs-signatures

Version:

An implementation of BBS+ signatures using rust compiled to wasm

74 lines 2.65 kB
{ "name": "@mattrglobal/bbs-signatures", "version": "2.0.0", "author": "MATTR", "license": "Apache-2.0", "private": false, "description": "An implementation of BBS+ signatures using rust compiled to wasm", "homepage": "https://github.com/mattrglobal/bbs-signatures", "main": "lib/index.js", "types": "lib/index.d.ts", "repository": "https://github.com/mattrglobal/bbs-signatures", "browser": { "index.js": "lib/index.web.js" }, "files": [ "lib/*" ], "directories": { "lib": "lib" }, "engines": { "node": ">=18" }, "scripts": { "uninstall": "rm -rf node_modules && yarn clean", "clean": "rm -rf target && rm -rf dist", "build": "./scripts/build-package.sh DEBUG", "build:release": "./scripts/build-package.sh RELEASE", "license:check": "license-checker --excludePrivatePackages --excludeScopes '@mattrglobal' --onlyAllow 'MIT;BSD;Apache-2.0;Apache 2.0;Apache License, Version 2.0;Apache*;Unlicense;ISC;Artistic-2.0;WTFPL;CC-BY-3.0;CC-BY-4.0;CC0-1.0;Python-2.0;MPL-2.0;' --summary", "test": "yarn test:browser && yarn test:node && yarn test:wasm", "test:browser": "./scripts/test-browser.sh", "test:node": "BBS_SIGNATURES_MODE=\"NODE_JS_MODULE\" yarn jest", "test:wasm": "BBS_SIGNATURES_MODE=\"WASM\" yarn jest", "benchmark:node": "BBS_SIGNATURES_MODE=\"NODE_JS_MODULE\" ts-node ./bench/index.ts", "benchmark:wasm": "BBS_SIGNATURES_MODE=\"WASM\" ts-node ./bench/index.ts", "publish:unstable": "./scripts/publish-unstable.sh", "publish:release": "./scripts/publish.sh", "version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md", "version:release": "yarn version --message \"chore(release): publish\"", "prepare": "husky install" }, "devDependencies": { "@commitlint/cli": "17.7.1", "@commitlint/config-conventional": "17.7.0", "@stablelib/base64": "1.0.0", "@stablelib/benchmark": "1.0.0", "@types/jest": "28.1.1", "@types/node": "12.7.2", "@wasm-tool/wasm-pack-plugin": "1.7.0", "buffer": "6.0.3", "conventional-changelog": "3.1.25", "conventional-changelog-cli": "2.2.2", "husky": "8.0.0", "jest": "28.1.1", "license-checker-commit": "25.0.2", "prettier": "2.0.4", "pretty-quick": "2.0.1", "process": "0.11.10", "rollup": "2.49.0", "text-encoding": "0.7.0", "ts-jest": "28.0.5", "ts-node": "8.4.1", "typescript": "4.3.5" }, "resolutions": { "lodash": "4.17.21" }, "optionalDependencies": { "@mattrglobal/node-bbs-signatures": "0.20.0" }, "dependencies": { "@stablelib/random": "1.0.0" } }