-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.97 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
{
"name": "trading-events-google-calendar",
"version": "0.0.3",
"description": "Fetch scheduled company earnings, dividends, CPI report dates and other info into google calendar.",
"main": "app/app.ts",
"type": "module",
"scripts": {
"accept-calendar-invitation": "npx tsx ./commands/accept-calendar-invitation.command.ts",
"dev": "npx tsx watch app/app.ts",
"prod:start": "forever start -a --uid trading-calendar -c 'npx tsx' ./app/app.ts",
"prod:stop": "forever stop trading-calendar",
"single": "npx tsx app/app.ts --single",
"start": "npx tsx app/app.ts",
"sync-cpi-events": "npx tsx ./commands/sync-cpi-events.command.ts",
"sync-dividend-events": "npx tsx ./commands/sync-dividend-events.command.ts",
"sync-earnings-events": "npx tsx ./commands/sync-earnings-events.command.ts",
"sync-fed-events": "npx tsx ./commands/sync-fed-events.command.ts",
"sync-market-holiday-events": "npx tsx ./commands/sync-market-holiday-events.command.ts",
"test": "npx jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/junajan/trading-events-google-calendar.git"
},
"keywords": [
"trading",
"stock",
"earnings",
"dividends",
"cpi reports",
"market holidays",
"fed events",
"google calendar"
],
"author": {
"name": "Jan Juna",
"email": "[email protected]",
"url": "https://janjuna.cz/"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/junajan/trading-events-google-calendar/issues"
},
"homepage": "https://github.com/junajan/trading-events-google-calendar#readme",
"dependencies": {
"@google-cloud/local-auth": "^3.0.1",
"cheerio": "1.0.0-rc.12",
"config": "^3.3.11",
"googleapis": "^137.1.0",
"nyse-holidays": "^1.2.0",
"tsx": "^4.11.0",
"typescript": "^5.4.5",
"yahoo-finance2": "^2.11.3"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.13.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.4"
}
}