forked from luzzif/binance-api-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.71 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
{
"name": "binance-api-client",
"version": "2.10.2",
"description": "A wrapper which can be used to interact with Binance's API. Entirely developed in TypeScript.",
"main": "build/index.js",
"types": "index.d.ts",
"engines": {
"node": ">=8.4.0"
},
"scripts": {
"build": "tsc",
"lint:code": "eslint \"src/**/*.ts\"",
"lint:prettier": "prettier -l src/**/*.ts",
"lint:commit-message": "commitlint -e",
"lint": "yarn lint:code && yarn lint:prettier",
"prettify": "yarn lint:prettier --write",
"postinstall": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/luzzif/binance-api-client.git"
},
"keywords": [
"binance",
"api",
"client",
"typescript",
"crypto"
],
"author": "Federico Luzzi <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/luzzif/binance-api-client/issues"
},
"homepage": "https://github.com/luzzif/binance-api-client#readme",
"dependencies": {
"crypto-js": "^4.0.0",
"request": "^2.88.2",
"request-promise": "^4.2.5",
"typescript": "^3.8.3",
"websocket-heartbeats": "^1.2.0",
"ws": "^7.2.3"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@types/crypto-js": "^3.1.38",
"@types/node": "^13.9.2",
"@types/requestretry": "^1.12.6",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"eslint": "^6.8.0",
"husky": "^4.2.3",
"prettier": "^2.0.5"
}
}