-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
107 lines (107 loc) · 2.82 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
98
99
100
101
102
103
104
105
106
107
{
"name": "@stoqey/ibkr",
"private": false,
"version": "1.8.5",
"description": "NodeJS Interactive Brokers wrapper & utilities",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"register/",
"LICENSE"
],
"scripts": {
"lint": "tslint \"src/**/*.ts\" --project tsconfig.json",
"build": "rimraf dist && tsc",
"dev": "nodemon src/dev",
"account": "mocha src/account/*test.ts --exit",
"contract": "mocha src/contracts/*test.ts --exit",
"connection": "mocha src/connection/*test.ts --exit",
"realtime": "mocha src/realtime/*test.ts --exit",
"history": "mocha src/history/*test.ts --exit",
"portfolios": "mocha src/portfolios/*test.ts --exit",
"order": "mocha src/orders/*test.ts --exit",
"scanner": "mocha src/scanner/*test.ts --exit",
"unit-test": "mocha src/**/*test.ts --exit",
"test": "mocha src/*test.ts --exit",
"test:fundamental": "mocha src/fundamental/*test.ts --exit",
"prepublishOnly": "npm run build",
"eslint": "eslint ./src --fix --ext=ts"
},
"lint-staged": {
"*.{ts,tsx}": [
"yarn eslint"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"engines": {
"node": ">=4.2.0"
},
"repository": {
"type": "git",
"url": "git://github.com/stoqey/ibkr.git"
},
"keywords": [
"interactive brokers",
"interactive-brokers",
"ibkr",
"ibkr api",
"stoqey",
"algorithms",
"stocks"
],
"author": {
"name": "Ceddy Muhoza",
"email": "[email protected]",
"url": "https://ceddy.org"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/stoqey/ibkr/issues"
},
"homepage": "https://github.com/stoqey/ibkr",
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/debug": "^4.1.5",
"@types/lodash": "^4.14.150",
"@types/mocha": "^7.0.2",
"@types/node": "^10.0.3",
"@types/source-map-support": "^0.4.0",
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.4.0",
"chai": "^4.2.0",
"eslint": "^8.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-json": "^2.1.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-simple-import-sort": "^5.0.2",
"eslint-plugin-typescript": "^0.14.0",
"husky": "^4.2.5",
"lint-staged": "^10.1.7",
"mocha": "^9.1.4",
"nodemon": "^2.0.6",
"prettier": "^2.0.5",
"rimraf": "^2.5.4",
"ts-node": "^8.4.1",
"tslint": "^5.11.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.2.4"
},
"peerDependencies": {
"typescript": ">=2.0"
},
"dependencies": {
"@stoqey/ib": "^1.1.42",
"debug": "^4.1.1",
"dotenv": "^8.2.0",
"lodash": "^4.17.21",
"moment": "^2.24.0",
"sleepjs": "^4.0.2"
}
}