-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.1 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
{
"name": "@stove-labs/arbitrage-bot-profit-finder-lite",
"version": "1.1.2",
"description": "discovers arbitrage opportunities and calculates profit",
"keywords": [
"arbitrage",
"CFMM",
"DEX",
"Uniswap",
"profit",
"finder"
],
"author": "dexterslabor <[email protected]>",
"homepage": "https://github.com/stove-labs/arbitrage-bot#readme",
"license": "MIT",
"main": "./dist/lib/profitFinderLitePlugin.js",
"typings": "./dist/types/profitFinderLitePlugin.d.ts",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stove-labs/arbitrage-bot.git"
},
"scripts": {
"test": "mocha -r ts-node/register test/**/**.ts",
"test:watch": "mocha -r ts-node/register test/**/**.ts --watch-extensions ts --watch --watch-files src, './test/**/**.test.ts'",
"build": "rm -rf dist && tsc"
},
"bugs": {
"url": "https://github.com/stove-labs/arbitrage-bot/issues"
},
"dependencies": {
"@stove-labs/arbitrage-bot": "^1.1.2",
"yargs": "^17.6.0"
}
}