-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.4 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
{
"name": "sec-data-fetcher",
"version": "1.0.2",
"description": "An npm library to fetch SEC data from all supported endpoints with rate limiting.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"test": "jest",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "eslint 'src/**/*.ts' --fix",
"example": "node dist/example.js",
"clean": "rm -rf dist",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/SebastianBoehler/sec-data-fetcher.git"
},
"keywords": [
"SEC",
"EDGAR",
"API",
"Wrapper",
"finance",
"parsing",
"formatting",
"api",
"data",
"rate-limiting"
],
"author": "Sebastian Boehler",
"license": "MIT",
"dependencies": {
"axios": "^1.5.0",
"axios-rate-limit": "^1.3.0",
"cheerio": "^1.0.0",
"fast-xml-parser": "^4.2.4"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/cheerio": "^0.22.35",
"@types/jest": "^29.5.13",
"@types/node": "^20.4.2",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"typescript": "^5.2.2"
}
}