-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.08 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
{
"name": "@stoqey/hennessy",
"version": "0.0.4",
"description": "Hennessy - A very special Cognac (Market Data/IBKR/FINNHUB/BINANCE)",
"private": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"docs/",
"dist/",
"register/",
"LICENSE"
],
"scripts": {
"build": "rimraf dist && tsc",
"test": "mocha src/*test.ts --full-trace",
"quote": "mocha src/quote.test.ts --full-trace",
"eslint": "eslint ./src --fix --config=.mocharc.json",
"prepublishOnly": "npm run build"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"prettier": {
"trailingComma": "all"
},
"lint-staged": {
"*.ts": [
"tslint --project tsconfig.json -c tslint.commit.json --fix",
"prettier --write ./src/**/*ts"
]
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/stoqey/hennessy.git"
},
"keywords": [
"ai",
"automation",
"crypto-api",
"crypto",
"binance-api",
"binance",
"ibkr-api",
"ibkr",
"ib",
"finnhub-api",
"finnhub",
"options-api",
"stocks",
"stocks-api",
"market-data",
"stoqey",
"stoqey inc"
],
"author": "Stoqey Inc <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/stoqey/hennessy/issues"
},
"homepage": "https://github.com/stoqey/hennessy#readme",
"dependencies": {
"@stoqey/finnhub": "^0.2.4",
"@stoqey/ibkr": "^1.6.5",
"debug": "^4.2.0",
"dotenv": "^8.2.0",
"lodash": "^4.17.20",
"request": "^2.88.2"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/debug": "^4.1.5",
"@types/lodash": "^4.14.165",
"@types/mocha": "^8.0.3",
"@types/node": "^14.14.7",
"chai": "^4.2.0",
"husky": "^4.2.5",
"lint-staged": "^10.1.7",
"mocha": "^8.2.0",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"rimraf": "^2.5.4",
"ts-node": "^9.0.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^8.0.1",
"tslint-etc": "^1.13.7",
"typescript": "^4.0.3"
}
}