-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.25 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
{
"name": "binance-kiwi-cli",
"version": "0.0.1",
"description": "A fun CLI wrapper around Binance trading API. Makes some operations easy to execute and/or automate.",
"author": "FABCO",
"repository": "",
"main": "./kiwi/index.js",
"scripts": {
"prettier:format": "prettier --write \"{src,tests,wrappers}/**/*.ts\"",
"prettier:check": "prettier --check \"{src,tests,wrappers}/**/*.ts\"",
"lint": "eslint \"{src,tests,wrappers}/**/*.ts\" --fix",
"build": "rm -rf kiwi/ && tsc -b ./tsconfig.build.json",
"test": "jest"
},
"files": [
"kiwi/"
],
"bin": {},
"engines": {
"node": ">=18"
},
"license": "MIT",
"dependencies": {
"crypto": "^1.0.1",
"undici": "^6.19.2"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^20.14.10",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"eslint": "^8.11.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.1.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.6.1",
"ts-node": "^10.7.0",
"typescript": "^4.6.2",
"jest": "^29.7.0",
"ts-jest": "^29.1.2"
}
}