-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1 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
{
"name": "b3-scraper",
"version": "2.0.1",
"description": "Web scraper package to gather info about B3.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"statusinvest",
"fundamentus",
"b3",
"cvm",
"bolsa",
"mercado",
"financeiro"
],
"license": "ISC",
"files": [
"dist/index.js",
"dist/index.d.ts",
"dist/@types",
"dist/lib",
"dist/utils"
],
"author": {
"name": "Vitor Lima",
"email": "[email protected]",
"url": "https://github.com/vitorwlima"
},
"repository": {
"type": "git",
"url": "https://github.com/vitorwlima/b3-scraper"
},
"scripts": {
"test:get-stock": "tsx watch src/scripts/getStockTest.ts",
"test:get-all-stocks": "tsx watch src/scripts/getAllStocksTest.ts",
"build": "tsc"
},
"devDependencies": {
"@rocketseat/eslint-config": "^2.1.0",
"eslint": "^8.48.0",
"tsx": "^3.12.7",
"typescript": "^5.2.2"
},
"dependencies": {
"puppeteer": "^21.1.1"
}
}