-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
50 lines (50 loc) · 1.42 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
{
"name": "@rainbow-me/fee-suggestions",
"description": "JavaScript library that suggest fees on Ethereum after EIP-1559 using historical data using ethers.js",
"version": "2.1.0",
"main": "dist/index.js",
"license": "MIT",
"keywords": [
"javascript",
"ethereum",
"eip1559",
"ethers",
"web3",
"dapp"
],
"author": "Bruno Barbieri",
"bugs": {
"url": "https://github.com/rainbow-me/eip-1559-fee-suggestions/issues"
},
"homepage": "https://github.com/rainbow-me/eip-1559-fee-suggestions#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/rainbow-me/eip-1559-fee-suggestions.git"
},
"scripts": {
"start": "ts-node demo.ts",
"build": "yarn tsc",
"publish:release": "yarn build && yarn publish",
"lint": "yarn lint:ts && yarn lint:js",
"lint:js": "eslint --cache --ext '.ts,.tsx,.js,.jsx' .",
"lint:ts": "yarn tsc --skipLibCheck --noEmit"
},
"dependencies": {
"@ethersproject/providers": "^5.5.0",
"bignumber.js": "^9.0.1",
"ethers": "^5.4.2",
"moving-averages": "^4.0.6"
},
"devDependencies": {
"@types/node": "^16.11.1",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"eslint": "^8.1.0",
"eslint-config-rainbow": "^2.0.1",
"eslint-plugin-jest": "^25.2.2",
"nodemon": "^2.0.12",
"prettier": "^2.3.2",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
}
}