-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1 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
{
"name": "4byte",
"version": "0.0.1",
"description": "Look up an Ethereum function signature by the 4 bytes of its hash",
"main": "index.js",
"bin": {
"4byte": "bin/4byte"
},
"scripts": {
"test": "tape test/*.js",
"lint": "standard --fix *.js test/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/shanefontaine/4byte"
},
"bugs": {
"url": "https://github.com/shanefontaine/4byte/issues"
},
"homepage": "https://github.com/shanefontaine/4byte",
"author": {
"name": "Shane Fontaine",
"email": "[email protected]",
"url": "https://shane.dev/"
},
"license": "MIT",
"url": "https://github.com/shanefontaine/4byte/blob/master/LICENSE",
"dependencies": {
"meow": "^5.0.0",
"node-fetch": "2.6.1"
},
"keywords": [
"ethereum",
"eth",
"blockchain",
"4byte",
"function",
"signature",
"hash",
"keccack",
"sha3"
],
"devDependencies": {
"standard": "^12.0.1",
"tape": "^5.2.2"
}
}