UNPKG

3.16 kBJSONView Raw
1{
2 "name": "ethereumjs-util",
3 "version": "7.1.5",
4 "description": "A collection of utility functions for Ethereum",
5 "license": "MPL-2.0",
6 "author": "mjbecze <mjbecze@gmail.com>",
7 "keywords": [
8 "ethereum",
9 "utilities",
10 "utils"
11 ],
12 "engines": {
13 "node": ">=10.0.0"
14 },
15 "files": [
16 "dist",
17 "dist.browser",
18 "src"
19 ],
20 "main": "dist/index.js",
21 "types": "dist/index.d.ts",
22 "browser": "dist.browser/index.js",
23 "scripts": {
24 "build": "npm run build:node && npm run build:browser",
25 "build:node": "../../config/cli/ts-build.sh node",
26 "build:browser": "../../config/cli/ts-build.sh browser",
27 "prepublishOnly": "../../config/cli/prepublish.sh",
28 "clean": "../../config/cli/clean-package.sh",
29 "coverage": "../../config/cli/coverage.sh",
30 "docs:build": "npx typedoc --options typedoc.js",
31 "lint": "../../config/cli/lint.sh",
32 "lint:fix": "../../config/cli/lint-fix.sh",
33 "tape": "tape -r ts-node/register",
34 "test": "npm run test:node",
35 "test:browser": "karma start karma.conf.js",
36 "test:node": "npm run tape -- test/*.spec.ts",
37 "tsc": "../../config/cli/ts-compile.sh"
38 },
39 "dependencies": {
40 "@types/bn.js": "^5.1.0",
41 "bn.js": "^5.1.2",
42 "create-hash": "^1.1.2",
43 "ethereum-cryptography": "^0.1.3",
44 "rlp": "^2.2.4"
45 },
46 "devDependencies": {
47 "@types/assert": "^1.5.4",
48 "@types/node": "^16.11.7",
49 "@types/secp256k1": "^4.0.1",
50 "@types/tape": "^4.13.2",
51 "eslint": "^6.8.0",
52 "karma": "^6.3.2",
53 "karma-chrome-launcher": "^3.1.0",
54 "karma-firefox-launcher": "^2.1.0",
55 "karma-tap": "^4.2.0",
56 "karma-typescript": "^5.5.3",
57 "nyc": "^15.1.0",
58 "prettier": "^2.0.5",
59 "tape": "^4.10.1",
60 "ts-node": "^10.2.1",
61 "typescript": "^4.4.2"
62 },
63 "repository": {
64 "type": "git",
65 "url": "https://github.com/ethereumjs/ethereumjs-monorepo.git"
66 },
67 "homepage": "https://github.com/ethereumjs/ethereumjs-monorepo/tree/master/packages/util#readme",
68 "bugs": {
69 "url": "https://github.com/ethereumjs/ethereumjs-monorepo/issues?q=is%3Aissue+label%3A%22package%3A+util%22"
70 },
71 "contributors": [
72 {
73 "name": "Tim Coulter",
74 "email": "tim@timothyjcoulter.com",
75 "url": "https://github.com/tcoulter"
76 },
77 {
78 "name": "Nick Dodson",
79 "url": "https://github.com/SilentCicero"
80 },
81 {
82 "name": "Mr. Chico",
83 "url": "https://github.com/MrChico"
84 },
85 {
86 "name": "Dũng Trần",
87 "email": "tad88.dev@gmail.com",
88 "url": "https://github.com/tad88dev"
89 },
90 {
91 "name": "Alex Beregszaszi",
92 "email": "alex@rtfs.hu",
93 "url": "https://github.com/axic"
94 },
95 {
96 "name": "Taylor Gerring",
97 "url": "https://github.com/tgerring"
98 },
99 {
100 "name": "Kirill Fomichev",
101 "email": "fanatid@ya.ru",
102 "url": "https://github.com/fanatid"
103 },
104 {
105 "name": "kumavis",
106 "email": "aaron@kumavis.me",
107 "url": "https://github.com/kumavis"
108 },
109 {
110 "name": "Alexander Sinyagin",
111 "email": "sinyagin.alexander@gmail.com",
112 "url": "https://github.com/asinyagin"
113 }
114 ]
115}