From dedb054fd81ca42aec2ed8caf20ba999ef1c4b44 Mon Sep 17 00:00:00 2001 From: Ian Coleman Date: Thu, 12 Sep 2019 15:29:10 +1000 Subject: Add ethereumjs-util to libs directory --- libs/ethereumjs-util/package.json | 125 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 125 insertions(+) create mode 100644 libs/ethereumjs-util/package.json (limited to 'libs/ethereumjs-util/package.json') diff --git a/libs/ethereumjs-util/package.json b/libs/ethereumjs-util/package.json new file mode 100644 index 0000000..a49746f --- /dev/null +++ b/libs/ethereumjs-util/package.json @@ -0,0 +1,125 @@ +{ + "name": "ethereumjs-util", + "version": "6.0.0", + "description": "a collection of utility functions for Ethereum", + "main": "dist/index.js", + "files": [ + "dist" + ], + "scripts": { + "build": "browserify index.js -s ethUtil -o /tmp/ethereumjs-util.js", + "coverage": "npm run build:dist && istanbul cover _mocha", + "coveralls": "npm run coverage && coveralls ./docs/index.md" + }, + "repository": { + "type": "git", + "url": "https://github.com/ethereumjs/ethereumjs-util.git" + }, + "keywords": [ + "ethereum", + "utilties" + ], + "author": "mjbecze ", + "contributors": [ + { + "name": "Tim Coulter", + "email": "tim@timothyjcoulter.com", + "url": "https://github.com/tcoulter", + "contributions": 1, + "additions": 2, + "deletions": 2 + }, + { + "name": "Nick Dodson", + "url": "https://github.com/SilentCicero", + "contributions": 2, + "additions": 26, + "deletions": 2 + }, + { + "name": "Mr. Chico", + "url": "https://github.com/MrChico", + "contributions": 1, + "additions": 11, + "deletions": 1 + }, + { + "name": "Dũng Trần", + "email": "tad88.dev@gmail.com", + "url": "https://github.com/tad88dev", + "contributions": 2, + "additions": 5, + "deletions": 5 + }, + { + "name": "Alex Beregszaszi", + "email": "alex@rtfs.hu", + "url": "https://github.com/axic", + "contributions": 77, + "additions": 1796, + "deletions": 642 + }, + { + "name": "Taylor Gerring", + "url": "https://github.com/tgerring", + "contributions": 1, + "additions": 1, + "deletions": 1 + }, + { + "name": "Kirill Fomichev", + "email": "fanatid@ya.ru", + "url": "https://github.com/fanatid", + "contributions": 8, + "additions": 32, + "deletions": 16 + }, + { + "name": "kumavis", + "email": "aaron@kumavis.me", + "url": "https://github.com/kumavis", + "contributions": 2, + "additions": 2, + "deletions": 2 + }, + { + "name": "Alexander Sinyagin", + "email": "sinyagin.alexander@gmail.com", + "url": "https://github.com/asinyagin", + "contributions": 1, + "additions": 3, + "deletions": 1 + } + ], + "license": "MPL-2.0", + "bugs": { + "url": "https://github.com/ethereumjs/ethereumjs-util/issues" + }, + "homepage": "https://github.com/ethereumjs/ethereumjs-util", + "dependencies": { + "bn.js": "^4.11.0", + "create-hash": "^1.1.2", + "ethjs-util": "^0.1.6", + "keccak": "^1.0.2", + "rlp": "^2.0.0", + "safe-buffer": "^5.1.1", + "secp256k1": "^3.0.1" + }, + "devDependencies": {}, + "standard": { + "globals": [ + "describe", + "it" + ], + "ignore": [ + "dist/**" + ] + } +} -- cgit v1.2.3