-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.92 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
55
56
57
58
59
60
61
62
63
{
"name": "@stove-labs/arbitrage-bot-cli",
"version": "1.1.4",
"description": "command line interface for the arbitrage bot",
"keywords": [
"CLI",
"arbitrage",
"bot"
],
"author": "dexterslabor <[email protected]>",
"homepage": "https://github.com/stove-labs/arbitrage-bot#readme",
"license": "MIT",
"main": "./dist/lib/cli.js",
"files": [
"dist"
],
"bin": "./dist/lib/cli.js",
"repository": {
"type": "git",
"url": "git+https://github.com/stove-labs/arbitrage-bot.git"
},
"scripts": {
"build": "rm -rf dist && tsc",
"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'",
"cli": "npm run build && node ./dist/lib/cli.js"
},
"typings": "./dist/types/types.d.ts",
"bugs": {
"url": "https://github.com/stove-labs/arbitrage-bot/issues"
},
"devDependencies": {
"@types/argv": "^0.0.5",
"@types/chai": "^4.3.3",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^9.1.1",
"@types/yargs": "^17.0.12",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"mocha": "^10.0.0",
"ts-node": "^10.9.1"
},
"dependencies": {
"@stove-labs/arbitrage-bot": "^1.1.2",
"@stove-labs/arbitrage-bot-accountant": "^1.1.2",
"@stove-labs/arbitrage-bot-profit-finder-lite": "^1.1.2",
"@stove-labs/arbitrage-bot-reporter": "^1.1.2",
"@stove-labs/arbitrage-bot-swap-execution": "^1.1.2",
"@stove-labs/arbitrage-bot-token-registry": "^1.1.2",
"@stove-labs/arbitrage-bot-trigger-chain": "^1.1.2",
"@stove-labs/tezos-dex-quipuswap": "^1.1.2",
"@stove-labs/tezos-dex-vortex": "^1.1.2",
"@taquito/signer": "^14.0.0",
"ascii-table3": "^0.8.0",
"figlet": "^1.5.2",
"fs": "^0.0.1-security",
"lodash": "^4.17.21",
"yargs": "^17.5.1"
},
"publishConfig": {
"access": "public"
}
}