UNPKG

@privacyresearch/ed25519-ts

Version:

TypeScript implementation of ed25519 & ristretto255 allowing BigInt and SHA dependency injection

70 lines (69 loc) 2.01 kB
{ "name": "@privacyresearch/ed25519-ts", "version": "0.0.3", "description": "TypeScript implementation of ed25519 & ristretto255 allowing BigInt and SHA dependency injection", "main": "lib/index.js", "types": "lib/index.d.ts", "files": [ "lib/*.js", "lib/*.d.ts" ], "scripts": { "test": "jest --config jestconfig.json --no-cache", "lint": "eslint -c .eslintrc.js '**/*.ts'", "format": "prettier '**/{*.{js?(on),ts?(x),md},.*.js?(on)}' --write --list-different --config prettier.config.js", "prepare": "yarn run build", "build": "tsc -d", "prepublishOnly": "yarn run lint", "preversion": "yarn run lint && yarn test", "version": "yarn run format && git add -A src", "postversion": "git push && git push --tags", "bench": "node src/__test__/benchmark-jsbi.js && node src/__test__/benchmark-native.js" }, "author": "Rolfe Schmidt (https://privacyresearch.io) adapted from Paul Miller (https://paulmillr.com)", "homepage": "https://github.com/privacyresearch/pr-ed25519.git", "repository": { "type": "git", "url": "https://github.com/privacyresearch/pr-ed25519.git" }, "license": "MIT", "browser": { "crypto": false }, "devDependencies": { "@types/jest": "^26.0.22", "@types/node": "^14.14.41", "@typescript-eslint/eslint-plugin": "^4.25.0", "@typescript-eslint/parser": "^4.25.0", "eslint": "^7.27.0", "eslint-config-prettier": "^8.3.0", "eslint-plugin-prettier": "^3.4.0", "fast-check": "^2.14.0", "jest": "^26.6.3", "js-sha512": "^0.8.0", "jsbi": "^3.2.1", "micro-bmark": "^0.1.3", "prettier": "^2.2.1", "rollup": "^2.50.4", "ts-jest": "^26.5.5", "typescript": "^4.2.4" }, "keywords": [ "ed25519", "edwards", "ristretto255", "decaf", "curve25519", "x25519", "elliptic", "elliptic curve", "curve", "signature", "ecc", "eddsa", "ecdsa", "cryptography", "security" ], "dependencies": {} }