-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.48 KB
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
{
"name": "nof1-tracker",
"version": "1.0.3",
"description": "CLI tool for automated contract trading based on nof1 account totals API",
"main": "dist/index.js",
"bin": {
"nof1-tracker": "dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "ts-node src/index.ts",
"start": "node dist/index.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:coverage:report": "jest --coverage --coverageReporters=text-lcov | coveralls",
"lint": "eslint src/**/*.ts",
"format": "prettier --write src/**/*.ts"
},
"keywords": [
"trading",
"binance",
"futures",
"cryptocurrency",
"cli"
],
"author": "Nof1 Trading Team",
"license": "MIT",
"dependencies": {
"@types/fs-extra": "^11.0.4",
"axios": "^1.6.2",
"commander": "^11.1.0",
"crypto": "^1.0.1",
"crypto-js": "^4.2.0",
"dotenv": "^16.3.1",
"fs-extra": "^11.3.2",
"node-telegram-bot-api": "^0.66.0",
"querystring": "^0.2.1",
"winston": "^3.11.0"
},
"devDependencies": {
"@types/crypto-js": "^4.2.2",
"@types/jest": "^29.5.8",
"@types/node": "^20.10.4",
"@types/node-telegram-bot-api": "^0.64.12",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"eslint": "^8.54.0",
"jest": "^29.7.0",
"prettier": "^3.1.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
},
"engines": {
"node": ">=18.0.0"
}
}