-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
43 lines (43 loc) · 973 Bytes
/
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
{
"name": "eip55",
"version": "2.1.1",
"description": "A EIP55 compatible address encoding library",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"coverage": "nyc --check-coverage -r html -r text --lines 100 --branches 100 --statements 100 --functions 100 npm run unit",
"standard": "standard",
"test": "npm run unit && npm run standard",
"unit": "tape test/*.js"
},
"author": "Daniel Cousens",
"contributors": [
"Jonathan Underwood <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/cryptocoinjs/eip55.git"
},
"files": [
"index.js",
"index.d.ts"
],
"keywords": [
"EIP55",
"ethereum",
"address",
"checksum",
"encode",
"verify"
],
"license": "MIT",
"dependencies": {
"@noble/hashes": "^1.3.3"
},
"devDependencies": {
"keccak": "^3.0.3",
"nyc": "^15.1.0",
"standard": "^12.0.1",
"tape": "^4.8.0"
}
}