-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
54 lines (54 loc) · 1.31 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
{
"name": "ethereum-block-by-date",
"version": "1.5.0",
"description": "Get Ethereum block number by a given date. Or blocks by a given period duration.",
"keywords": [
"ethereum",
"blockchain",
"web3",
"eth",
"dapp",
"utilties"
],
"homepage": "https://github.com/monosux/ethereum-block-by-date",
"repository": {
"type": "git",
"url": "https://github.com/monosux/ethereum-block-by-date.git"
},
"bugs": {
"url": "https://github.com/monosux/ethereum-block-by-date/issues"
},
"author": "Sergey Alexeev <[email protected]>",
"license": "MIT",
"main": "./lib/ethereum-block-by-date.js",
"dependencies": {
"moment": "^2.30.1"
},
"scripts": {
"build": "rimraf lib && babel src -d lib",
"test": "npm run build && mocha && npm run lint",
"lint": "eslint src",
"prettier": "prettier src --write",
"style": "yarn lint && yarn prettier"
},
"devDependencies": {
"@babel/cli": "^7.24.8",
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"chai": "^4.5.0",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"ethers": "^6.13.2",
"ethers-v5": "npm:[email protected]",
"mocha": "^10.7.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"viem": "^2.18.7",
"web3": "^4.11.1",
"web3-v1": "npm:[email protected]"
},
"browserslist": [
"last 2 chrome versions",
"maintained node versions"
]
}