-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.49 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
{
"name": "@stove-labs/tezos-dex-quipuswap",
"version": "1.1.2",
"description": "plugin for the tezos DEX quipuswap",
"keywords": [
"DEX",
"tezos",
"quipuswap",
"decentralized",
"exchange",
"CFMM"
],
"author": "dexterslabor <[email protected]>",
"homepage": "https://github.com/stove-labs/arbitrage-bot#readme",
"license": "MIT",
"main": "./dist/lib/exchangeQuipuswapPlugin.js",
"typings": "./dist/types/exchangeQuipuswapPlugin.d.ts",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"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/**.test.ts",
"test:watch": "mocha -r ts-node/register test/**/**.ts --watch-extensions ts --watch --watch-files src, './test/**/**.test.ts'"
},
"bugs": {
"url": "https://github.com/stove-labs/arbitrage-bot/issues"
},
"dependencies": {
"@stove-labs/arbitrage-bot": "^1.1.2",
"@stove-labs/arbitrage-bot-exchange-utils": "^1.1.2",
"@stove-labs/arbitrage-bot-token-registry": "^1.1.2",
"@taquito/signer": "^14.0.0",
"@taquito/taquito": "^14.0.0"
},
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^9.1.1",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"fs-extra": "^10.1.0",
"mocha": "^10.0.0",
"ts-node": "^10.9.1"
}
}