forked from pilwon/node-ib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.18 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
{
"name": "ib",
"description": "Interactive Brokers TWS (or IB Gateway) API client library for Node.js",
"version": "0.2.7",
"license": "MIT",
"author": {
"name": "Pilwon Huh",
"email": "[email protected]"
},
"homepage": "https://github.com/pilwon/node-ib",
"repository": {
"type": "git",
"url": "git://github.com/pilwon/node-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"
],
"main": "lib/index.js",
"dependencies": {
"command-buffer": "^0.1.0",
"function-rate-limit": "^1.1.0",
"lodash": "^4.17.10"
},
"devDependencies": {
"chalk": "^2.3.0",
"grunt": "^1.0.3",
"grunt-contrib-jshint": "^1.1.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-mocha-test": "^0.13.3",
"matchdep": "^2.0.0",
"mocha": "^4.1.0",
"moment": "^2.20.1"
},
"scripts": {
"prepare": "npm prune",
"test": "grunt test"
}
}