forked from monosux/ethereum-block-by-date
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.12 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
{
"name": "ethereum-block-by-date",
"version": "1.4.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.29.1"
},
"scripts": {
"build": "rimraf lib && babel src -d lib",
"test": "npm run build && mocha && npm run lint",
"lint": "eslint src"
},
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.14.2",
"@babel/preset-env": "^7.14.2",
"chai": "^4.3.4",
"dotenv": "^9.0.2",
"eslint": "^7.26.0",
"ethers": "^5.1.4",
"mocha": "^8.4.0",
"rimraf": "^3.0.2",
"web3": "^1.3.6"
},
"browserslist": [
"last 2 chrome versions",
"maintained node versions"
]
}