-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 761 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 761 Bytes
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
{
"name": "eth-events",
"version": "0.9.3",
"description": "A library for querying and decoding Ethereum event logs",
"main": "dist/index.js",
"scripts": {
"build": "tsc --declaration",
"dev": "tsc --watch",
"test": "tsc && ts-node node_modules/tape/bin/tape test/*.ts"
},
"author": "kangarang",
"license": "MIT",
"dependencies": {
"bluebird": "^3.5.5",
"ethers": "^4.0.39",
"lodash": "4.17.15"
},
"devDependencies": {
"@types/lodash": "^4.14.146",
"@types/node": "^12.12.7",
"@types/tape": "4.2.33",
"prettier": "^1.19.1",
"tape": "4.11.0",
"ts-node": "^8.5.0",
"typescript": "^3.7.2"
},
"repository": {
"type": "git",
"url": "https://github.com/kangarang/eth-events"
}
}