forked from Bella-DeFinTech/uniswap-v3-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.04 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
{
"name": "uniswap-v3-bot",
"version": "1.0.0",
"main": "index.js",
"files": [
"dist/**"
],
"license": "BSL-1.0",
"private": false,
"scripts": {
"download": "ts-node scripts/EventsDownloader.ts",
"update": "ts-node scripts/EventsUpdater.ts",
"test": "yarn mocha",
"lint": "yarn prettier --write ."
},
"devDependencies": {
"@types/bn.js": "^5.1.0",
"@types/chai": "^4.2.21",
"@types/chai-as-promised": "^7.1.4",
"@types/mocha": "^9.0.0",
"bn.js": "^5.2.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"mocha": "9.0.3",
"mochawesome": "^6.2.2",
"prettier": "2.3.2",
"ts-node": "^10.2.0",
"typescript": "^4.3.5"
},
"dependencies": {
"@bella-defintech/uniswap-v3-simulator": "^0.1.2",
"jsbi": "3.1.6"
},
"mocha": {
"colors": true,
"spec": [
"test/**/Backtest.test.ts"
],
"reporter": [
"mochawesome"
],
"require": [
"ts-node/register"
],
"timeout": 3600000
}
}