forked from andyevers/sec-edgar-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.13 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.13 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
{
"name": "sec-edgar-api",
"version": "1.0.5",
"description": "Fetch and parse SEC earnings reports and other filings. Useful for financial analysis.",
"main": "build/index.js",
"author": "Andrew Evers (https://github.com/andyevers)",
"homepage": "https://github.com/andyevers/sec-edgar-api#readme",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/andyevers/sec-edgar-api.git"
},
"scripts": {
"test": "jest test",
"build": "tsc",
"publish": "npm run build && npm publish",
"lint": "npx eslint src"
},
"keywords": [
"sec",
"edgar",
"api",
"stock",
"financial",
"analysis",
"earnings",
"reports"
],
"devDependencies": {
"@eslint/js": "^9.11.1",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.2",
"eslint": "^9.11.1",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"typescript": "5.1.3",
"typescript-eslint": "^8.8.0"
},
"files": [
"build/**/*"
]
}