UNPKG

js-crypto-ec

Version:

Universal Module for Elliptic Curve Cryptography (ECDSA and ECDH) in JavaScript

47 lines (46 loc) 1.41 kB
{ "name": "js-crypto-ec", "version": "1.0.7", "description": "Universal Module for Elliptic Curve Cryptography (ECDSA and ECDH) in JavaScript", "main": "dist/index.js", "scripts": { "test": "yarn jest", "karma": "karma start", "karma:window": "yarn webpack && cross-env TEST_ENV=window karma start", "babel": "cross-env NODE_ENV=production tsc --build ./tsconfig.json", "webpack": "webpack --mode development --config webpack.config.js", "webpack:prod": "webpack --mode production --config webpack.config.js", "build": "rm -rf ./dist && yarn babel && yarn webpack:prod", "cleanup": "rm -rf ./dist coverage ./node_modules" }, "author": "Jun Kurihara", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/junkurihara/jscu.git" }, "bugs": { "url": "https://github.com/junkurihara/jscu/issues" }, "homepage": "https://github.com/junkurihara/jscu/tree/master/packages/js-crypto-ec#readme", "keywords": [ "crypto", "elliptic curve", "webcrypto", "ecdsa", "ecdh" ], "dependencies": { "asn1.js": "~5.4.1", "buffer": "~6.0.0", "elliptic": "~6.5.0", "js-crypto-env": "^1.0.5", "js-crypto-hash": "^1.0.7", "js-crypto-key-utils": "^1.0.7", "js-crypto-random": "^1.0.5", "js-encoding-utils": "0.7.3" }, "devDependencies": { "@types/elliptic": "6.4.15" } }