-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.78 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.78 KB
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
{
"name": "macro-investing",
"version": "1.0.0",
"description": "Automated macroeconomic indicator collection with AI-powered Fed policy analysis. Tracks unemployment, CPI, PPI, ISM PMI, and more from official sources.",
"main": "src/index.js",
"keywords": [
"macro",
"investing",
"economics",
"federal-reserve",
"unemployment",
"cpi",
"inflation",
"pmi",
"economic-indicators",
"data-collection",
"playwright",
"web-scraping",
"finance",
"trading"
],
"repository": {
"type": "git",
"url": "https://github.com/crazysoftwarecoder/macro-investing.git"
},
"author": "crazysoftwarecoder",
"homepage": "https://github.com/crazysoftwarecoder/macro-investing#readme",
"bugs": {
"url": "https://github.com/crazysoftwarecoder/macro-investing/issues"
},
"scripts": {
"collect:all": "node scripts/unemployment-rate.js && node scripts/nonfarm-payrolls.js && node scripts/jobless-claims.js && node scripts/cpi.js && node scripts/ppi.js && node scripts/ism-manufacturing.js && node scripts/ism-services.js && node scripts/consumer-confidence.js && node scripts/chicago-pmi.js",
"collect:unemployment": "node scripts/unemployment-rate.js",
"collect:jobless": "node scripts/jobless-claims.js",
"collect:nonfarm": "node scripts/nonfarm-payrolls.js",
"collect:cpi": "node scripts/cpi.js",
"collect:ppi": "node scripts/ppi.js",
"collect:ism-manufacturing": "node scripts/ism-manufacturing.js",
"collect:ism-services": "node scripts/ism-services.js",
"collect:chicago-pmi": "node scripts/chicago-pmi.js",
"collect:consumer-confidence": "node scripts/consumer-confidence.js"
},
"dependencies": {
"playwright": "^1.40.0",
"exceljs": "^4.4.0",
"pdf-parse": "^1.1.1"
},
"type": "module"
}