forked from maticnetwork/eth-decoder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.2 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
{
"name": "@maticnetwork/eth-decoder",
"version": "0.0.4",
"description": "Simple library to decode ethereum logs and transaction",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"clean": "rimraf lib",
"build": "tsc",
"prepublishOnly": "npm run lint && npm run clean && npm run build",
"lint": "eslint --ext .ts src",
"lint:fix": "eslint --ext .ts src --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maticnetwork/eth-decoder.git"
},
"keywords": [
"ethereum",
"web3",
"ethers",
"truffle"
],
"author": "Jaynti Kanani <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/maticnetwork/eth-decoder/issues"
},
"homepage": "https://github.com/maticnetwork/eth-decoder#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"eslint": "^7.16.0",
"rimraf": "^3.0.2",
"ts-loader": "^8.0.12",
"typescript": "^4.1.3"
},
"dependencies": {
"ethers": "^5.0.24"
},
"browserslist": [
"> 1%",
"node 8",
"not dead"
],
"engines": {
"node": ">=10.0.0"
}
}