UNPKG

1.04 kBJSONView Raw
1{
2 "name": "eosjs-ecc",
3 "version": "1.0.5",
4 "description": "Elliptic curve cryptography functions",
5 "keywords": "ECC, Private Key, Public Key, Signature, AES, Encryption, Decryption",
6 "main": "lib/index.js",
7 "scripts": {
8 "build": "mkdir -p dist && browserify -o dist/eosjs-ecc.js -s eosjs_ecc index.js && sha256sum dist/eosjs-ecc.js",
9 "prepublish": "node_modules/babel-cli/bin/babel.js src --out-dir lib"
10 },
11 "repository": {
12 "type": "git",
13 "url": "git://github.com/EOSIO/eosjs-ecc.git"
14 },
15 "dependencies": {
16 "bigi": "^1.4.2",
17 "bn.js": "^4.11.6",
18 "browserify-aes": "^1.0.6",
19 "bs58": "^4.0.1",
20 "bytebuffer": "^5.0.1",
21 "create-hash": "^1.1.3",
22 "create-hmac": "^1.1.6",
23 "ecurve": "^1.0.5",
24 "more-entropy": "^0.0.7",
25 "secure-random": "^1.1.1"
26 },
27 "license": "ISC",
28 "devDependencies": {
29 "babel-cli": "^6.26.0",
30 "babel-core": "^6.26.0",
31 "babel-preset-es2015": "^6.24.1",
32 "browserify": "^14.4.0"
33 },
34 "babel": {
35 "presets": [
36 "es2015"
37 ]
38 }
39}