UNPKG

834 BJSONView Raw
1{
2 "name": "eckey",
3 "version": "1.0.0",
4 "description": "Handle private key and public keys associated with elliptic curve cryptography. Used with crypto currencies such as Bitcoin, Litecoin, Dogecoin, etc. Works in both Node.js and the browser.",
5 "keywords": [
6 "cryptography",
7 "crypto",
8 "bitcoin",
9 "litecoin",
10 "elliptical",
11 "curve",
12 "digital",
13 "sign",
14 "signing"
15 ],
16 "devDependencies": {
17 "crypto-browserify": "^3.2.5",
18 "mocha": "2.x",
19 "secure-random": "^1.0.0",
20 "standard": "6.x"
21 },
22 "repository": {
23 "url": "https://github.com/cryptocoinjs/eckey",
24 "type": "git"
25 },
26 "main": "./lib/eckey.js",
27 "dependencies": {
28 "secp256k1": "^3.0.1"
29 },
30 "scripts": {
31 "lint": "standard",
32 "test": "standard && mocha --ui bdd",
33 "unit": "mocha --ui bdd"
34 }
35}