forked from stoqey/ib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.32 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@stoqey/ib",
"private": false,
"version": "1.2.42",
"description": "Interactive Brokers TWS/IB Gateway API client library for Node.js (TS)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"register/",
"LICENSE"
],
"scripts": {
"lint": "eslint . --ext .ts",
"test": "jest --maxWorkers=8 --reporters=default --useStderr --detectOpenHandles",
"test-next": "jest ./src/tests/unit/api-next/ --maxWorkers=8 --reporters=default --useStderr --detectOpenHandles",
"clean": "rm -rf dist",
"build": "yarn clean && yarn tsc",
"build:watch": "yarn tsc --watch",
"prepublishOnly": "yarn build",
"release": "yarn lint && yarn test && yarn doc && yarn build",
"doc": "typedoc --excludeInternal",
"doc:dev": "typedoc --out ./doc-dev",
"tsc": "./node_modules/.bin/tsc"
},
"engines": {
"node": ">=4.2.0"
},
"repository": {
"type": "git",
"url": "git://github.com/stoqey/ib.git"
},
"keywords": [
"interactive",
"brokers",
"tws",
"twsapi",
"ib",
"gateway",
"finance",
"stock",
"bond",
"option",
"forex",
"future",
"ticker",
"symbol",
"quote",
"market",
"data",
"automated",
"invest",
"trade",
"trading",
"system",
"api",
"client",
"library",
"stoqey"
],
"author": {
"name": "Ceddy Muhoza",
"email": "[email protected]",
"url": "https://ceddy.org"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/stoqey/ib/issues"
},
"homepage": "https://github.com/stoqey/ib",
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/lodash": "^4.14.150",
"@types/node": "^10.0.3",
"@types/source-map-support": "^0.4.0",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"ajv": "^8.1.0",
"eslint": "^7.24.0",
"eslint-plugin-jest": "^24.3.5",
"eslint-plugin-rxjs": "^3.1.5",
"jest": "^26.6.3",
"jest-environment-node": "^26.6.2",
"jest-junit": "^12.0.0",
"ts-jest": "^26.5.5",
"typedoc": "^0.21.0-beta.2",
"typescript": "^4.2.4"
},
"dependencies": {
"colors": "^1.4.0",
"command-buffer": "^0.1.0",
"dotenv": "^8.2.0",
"eventemitter3": "^4.0.7",
"function-rate-limit": "^1.1.0",
"rxjs": "^7.8.1"
}
}