UNPKG

@starcoin/stc-ed25519

Version:

Fastest JS implementation of ed25519 & ristretto255. Auditable, high-security, 0-dependency pubkey, scalarmult & EDDSA

57 lines 1.23 kB
{ "name": "@starcoin/stc-ed25519", "version": "0.1.0", "description": "Fastest JS implementation of ed25519 & ristretto255. Auditable, high-security, 0-dependency pubkey, scalarmult & EDDSA", "main": "index.js", "files": [ "index.js", "index.d.ts" ], "scripts": { "build": "tsc -d", "lint": "prettier --print-width 100 --single-quote --check index.ts", "test": "jest", "bench": "node test/benchmark.js" }, "jest": { "testRegex": "/test/.*.ts", "transform": { "^.+\\.ts$": "ts-jest" }, "useStderr": true, "bail": 2 }, "author": "", "repository": { "type": "git", "url": "https://github.com/starcoinorg/stc-ed25519.git" }, "license": "MIT", "devDependencies": { "@types/jest": "^26.0.22", "@types/node": "^14.14.41", "fast-check": "^2.14.0", "jest": "^26.6.3", "micro-bmark": "^0.1.3", "prettier": "^2.2.1", "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" ] }