-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 913 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
{
"name": "moontography-web3",
"version": "0.0.7",
"description": "Common web3 utilities & operations on the Ethereum blockchain",
"main": "./dist/libs/index.js",
"scripts": {
"build": "tsc",
"prepublish": "npm run build",
"test": "mocha --exit -r ts-node/register --recursive './src/**/*.spec.ts'"
},
"author": "Lance Whatley",
"license": "MIT",
"dependencies": {
"@ensdomains/ensjs": "^3.0.0-alpha.6",
"assert": "^2.0.0",
"csv-reader": "^1.0.12",
"csv-writer": "^1.6.0",
"dayjs": "^1.10.4",
"dotenv": "^16.0.1",
"ethereum-multicall": "^2.15.0",
"ethereumjs-util": "^7.0.10",
"ethers": "^5.6.9",
"web3": "^1.3.5"
},
"devDependencies": {
"@types/minimist": "^1.2.1",
"@types/mocha": "^8.2.2",
"@types/node": "^14.14.8",
"minimist": "^1.2.5",
"mocha": "^8.3.2",
"ts-node": "^9.1.1",
"typescript": "^4.0.5"
}
}