-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
95 lines (95 loc) · 2.44 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
{
"name": "@stoqey/finnhub",
"private": false,
"version": "0.3.4",
"description": "NodeJS Finhubb wrapper",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"register/",
"LICENSE"
],
"scripts": {
"lint": "tslint --project tsconfig.json -c tslint.commit.json --fix",
"prettier": "prettier --write src/**/*.ts",
"tslint-check": "tslint-config-prettier-check ./tslint.json",
"build": "rimraf dist && tsc",
"test-ws": "mocha src/websocket/*test.ts -R spec --require ts-node/register --exit --timeout 30000",
"test-spec": "mocha src/**/*test.ts -R spec --require ts-node/register --exit --timeout 30000",
"test-api": "mocha src/test/api/*test.ts --config mocharc.json",
"test": "yarn test-spec",
"prepublishOnly": "yarn build"
},
"prettier": {
"trailingComma": "all"
},
"lint-staged": {
"*.{ts,tsx}": [
"tslint --project tsconfig.json -c tslint.commit.json --fix",
"prettier --write src/**/*.ts"
]
},
"engines": {
"node": ">=4.2.0"
},
"repository": {
"type": "git",
"url": "git://github.com/stoqey/finnhub.git"
},
"keywords": [
"finance",
"stocks",
"crypto",
"finnhub",
"stoqey"
],
"author": {
"name": "Ceddy Muhoza",
"email": "[email protected]",
"url": "https://ceddy.org"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/stoqey/finnhub/issues"
},
"homepage": "https://github.com/stoqey/finnhub",
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/chai": "^4.0.4",
"@types/csvtojson": "^1.1.5",
"@types/debug": "^4.1.5",
"@types/lodash": "^4.14.164",
"@types/mocha": "^5.0.0",
"@types/moment": "^2.13.0",
"@types/moment-business-time": "^0.7.2",
"@types/node": "^10.0.3",
"@types/ws": "^7.2.4",
"chai": "^4.0.1",
"dotenv": "^8.2.0",
"husky": "^4.3.0",
"lint-staged": "^10.5.1",
"mocha": "^8.2.1",
"prettier": "2.1.2",
"rimraf": "^2.5.4",
"ts-node": "^8.4.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^8.0.1",
"tslint-etc": "^1.13.7",
"typescript": "^3.2.4"
},
"peerDependencies": {
"typescript": ">=2.0"
},
"dependencies": {
"axios": "^0.21.1",
"csvtojson": "^2.0.10",
"debug": "^4.2.0",
"eslint": "^7.27.0",
"lodash": "^4.17.20",
"moment": "^2.25.1",
"moment-business-time": "^1.0.0",
"ws": "^7.2.5"
}
}