forked from da-bao-jian/ftx-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·61 lines (61 loc) · 1.36 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
{
"name": "ftx-cli",
"version": "1.0.0",
"description": "Supercharged FTX lending from the command line.",
"author": {
"name": "Dusk",
"email": "[email protected]",
"url": "https://dusktrades.com"
},
"repository": "github:dusktrades/ftx-cli",
"license": "MIT",
"homepage": "https://github.com/dusktrades/ftx-cli#readme",
"keywords": [
"ftx",
"crypto",
"cryptocurrency",
"stablecoins",
"trading",
"lending",
"borrowing",
"cli"
],
"engines": {
"node": ">=14.13.0"
},
"type": "module",
"files": [
"bin",
"docs",
"src"
],
"bin": {
"ftx": "./bin/cli.js"
},
"scripts": {
"clean:node_modules": "rm -rf ./node_modules",
"format:check": "prettier --check .",
"format:fix": "prettier --write .",
"lint:check": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"cli-table3": "^0.6.0",
"commander": "^7.2.0",
"conf": "^10.0.1",
"got": "^11.8.2",
"node-cron": "^3.0.0"
},
"devDependencies": {
"eslint": "^7.28.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-sonarjs": "^0.7.0",
"eslint-plugin-unicorn": "^33.0.1",
"husky": "^4.3.8",
"lint-staged": "^11.0.0",
"prettier": "^2.3.1"
}
}