UNPKG

@nlindley/eccrypto

Version:

JavaScript Elliptic curve cryptography library

58 lines (57 loc) 1.32 kB
{ "name": "@nlindley/eccrypto", "version": "4.0.0", "description": "JavaScript Elliptic curve cryptography library", "main": "index.js", "browser": "browser.js", "scripts": { "test": "mocha && eslint --format codeframe .", "m": "mocha", "j": "jshint .", "prepublishOnly": "tsc index.js --declaration --allowJs --emitDeclarationOnly" }, "repository": { "type": "git", "url": "https://github.com/nlindley/eccrypto.git" }, "keywords": [ "ecc", "ecdsa", "ecdh", "ecies", "crypto", "cryptography", "secp256k1", "K-256", "elliptic", "curve" ], "author": "Nicholas Lindley <me@thisoneplace.com>", "contributors": [ "Kagami Hiiragi" ], "license": "CC0-1.0", "bugs": { "url": "https://github.com/nlindley/eccrypto/issues" }, "homepage": "https://github.com/nlindley/eccrypto", "devDependencies": { "@types/node": "^18.11.15", "buffer-equal": "1.0.1", "chai": "4.3.7", "chai-as-promised": "^7.1.1", "eslint": "^8.29.0", "eslint-config-prettier": "^8.5.0", "eslint-formatter-codeframe": "^7.32.1", "mocha": "10.2.0", "typescript": "^4.9.4" }, "dependencies": { "ecdh": "^0.2.0", "elliptic": "^6.5.4" }, "types": "index.d.ts", "engines": { "node": ">=14" } }