This repository has been archived by the owner on Jun 17, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 272
/
package.json
118 lines (118 loc) · 3.01 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "ethereumjs-util",
"version": "7.0.9",
"description": "a collection of utility functions for Ethereum",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"engines": {
"node": ">=10.0.0"
},
"files": [
"dist"
],
"scripts": {
"build": "ethereumjs-config-ts-build",
"prepublishOnly": "npm run test && npm run build",
"coverage": "ethereumjs-config-coverage",
"docs:build": "npx typedoc --options typedoc.js",
"lint": "ethereumjs-config-lint",
"lint:fix": "ethereumjs-config-lint-fix",
"test": "npm run test:node && npm run test:browser",
"test:browser": "karma start karma.conf.js",
"test:node": "tape -r ts-node/register test/*.spec.ts",
"tsc": "ethereumjs-config-tsc"
},
"husky": {
"hooks": {
"pre-push": "npm run lint"
}
},
"repository": {
"type": "git",
"url": "https://github.com/ethereumjs/ethereumjs-util.git"
},
"keywords": [
"ethereum",
"utilties"
],
"author": "mjbecze <[email protected]>",
"contributors": [
{
"name": "Tim Coulter",
"email": "[email protected]",
"url": "https://github.com/tcoulter"
},
{
"name": "Nick Dodson",
"url": "https://github.com/SilentCicero"
},
{
"name": "Mr. Chico",
"url": "https://github.com/MrChico"
},
{
"name": "Dũng Trần",
"email": "[email protected]",
"url": "https://github.com/tad88dev"
},
{
"name": "Alex Beregszaszi",
"email": "[email protected]",
"url": "https://github.com/axic"
},
{
"name": "Taylor Gerring",
"url": "https://github.com/tgerring"
},
{
"name": "Kirill Fomichev",
"email": "[email protected]",
"url": "https://github.com/fanatid"
},
{
"name": "kumavis",
"email": "[email protected]",
"url": "https://github.com/kumavis"
},
{
"name": "Alexander Sinyagin",
"email": "[email protected]",
"url": "https://github.com/asinyagin"
}
],
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/ethereumjs/ethereumjs-util/issues"
},
"homepage": "https://github.com/ethereumjs/ethereumjs-util",
"dependencies": {
"@types/bn.js": "^5.1.0",
"bn.js": "^5.1.2",
"create-hash": "^1.1.2",
"ethereum-cryptography": "^0.1.3",
"ethjs-util": "0.1.6",
"rlp": "^2.2.4"
},
"devDependencies": {
"@ethereumjs/config-coverage": "^2.0.0",
"@ethereumjs/config-typescript": "^2.0.0",
"@ethereumjs/eslint-config-defaults": "^2.0.0",
"@types/assert": "^1.5.4",
"@types/node": "^11.9.0",
"@types/secp256k1": "^4.0.1",
"@types/tape": "^4.13.0",
"husky": "^2.1.0",
"karma": "^5.0.2",
"karma-chrome-launcher": "^2.0.0",
"karma-firefox-launcher": "^1.0.0",
"karma-tap": "^4.2.0",
"karma-typescript": "^4.1.1",
"nyc": "^15.0.0",
"prettier": "^1.15.3",
"tape": "^5.2.2",
"ts-node": "^8.6.2",
"typedoc": "next",
"typedoc-plugin-markdown": "^2.2.16",
"typescript": "^3.8.3"
}
}