UNPKG

@gandlaf21/blind-signature

Version:

`@gandlaf21/blind-signature` is a JavaScript Module implementing blind signatures using `@noble/secp256k1` elliptic curve.

49 lines (48 loc) 1.2 kB
{ "name": "@gandlaf21/blind-signature", "version": "1.0.7", "description": "", "main": "dist/lib/es5/index.js", "module": "dist/lib/es6/index.js", "files": [ "dist", "src" ], "scripts": { "compile": "rm -rf dist/lib && tsc && tsc --build tsconfig.es5.json", "test": "jest --coverage --maxWorkers=1", "dev": "tsc --watch", "lint": "eslint --ext .js,.ts ." }, "repository": { "type": "git", "url": "git+https://github.com/gandlaf21/blind-signature-js" }, "keywords": [ "blindsignature", "ecash", "chaumium", "mint" ], "author": "gandlaf21", "license": "MIT", "dependencies": { "@noble/secp256k1": "^1.7.0" }, "devDependencies": { "@types/jest": "^29.2.4", "@typescript-eslint/eslint-plugin": "^5.47.1", "@typescript-eslint/parser": "^5.47.1", "eslint": "^8.31.0", "eslint-config-standard-with-typescript": "^24.0.0", "eslint-plugin-import": "^2.26.0", "eslint-plugin-n": "^15.6.0", "eslint-plugin-promise": "^6.1.1", "jest": "^29.3.1", "prettier": "^2.4.1", "ts-jest": "^29.0.3", "ts-jest-resolver": "^2.0.0", "ts-node": "^10.9.1", "typescript": "^4.9.4" } }