-
Notifications
You must be signed in to change notification settings - Fork 93
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 804 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 804 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
32
33
{
"name": "arbitrage-bot",
"version": "1.0.0",
"description": "An arbitrage bot that detects arbitrage opportunities between pancake and bakery swaps and manages flash swap calls",
"main": "index.js",
"author": "Johnson Ogwuru <ogwurujohnson@gmail.com>",
"scripts": {
"start": "tsc && node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+"
},
"keywords": [
"defi",
"bsc",
"flashloans"
],
"bugs": {
"url": "https://github.com/pedrobergamini/uni-sushi-flashloaner/issues"
},
"dependencies": {
"dotenv": "^8.2.0",
"ethers": "^5.0.32"
},
"devDependencies": {
"@types/node": "^14.14.34",
"tslint": "^6.1.3",
"typescript": "^4.2.3"
}
}