-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
61 lines (61 loc) · 1.55 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
{
"name": "eth-method-registry",
"version": "4.0.0",
"description": "A module for getting method signature info from an ethereum method signature.",
"main": "dist/index.js",
"engines": {
"node": "^16.20 || ^18.18 || >=20"
},
"scripts": {
"build": "tsc --project .",
"lint": "eslint . --ext ts,js,json",
"lint:fix": "yarn lint --fix",
"prepublishOnly": "yarn test",
"test": "yarn build && node test"
},
"author": "Dan Finlay <dan@danfinlay.com>",
"license": "ISC",
"dependencies": {
"@metamask/ethjs-contract": "^0.4.1",
"@metamask/ethjs-query": "^0.7.1"
},
"devDependencies": {
"@babel/runtime": "^7.0.0",
"@metamask/eslint-config": "^4.0.0",
"@metamask/auto-changelog": "^2.6.1",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"eslint": "^7.7.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-json": "^2.1.2",
"eslint-plugin-node": "^11.1.0",
"ganache": "7.3.1",
"prettier": "2.2.1",
"rc": "^1.2.8",
"tape": "^5.1.1",
"typescript": "^4.8.4"
},
"peerDependencies": {
"@babel/runtime": "^7.0.0"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/MetaMask/eth-method-registry.git"
},
"keywords": [
"Ethereum",
"solidity",
"4byte",
"signature"
],
"bugs": {
"url": "https://github.com/MetaMask/eth-method-registry/issues"
},
"homepage": "https://github.com/MetaMask/eth-method-registry#readme",
"files": [
"dist"
]
}