-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
48 lines (48 loc) · 1.15 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
{
"name": "fundamentus-unofficial-api",
"version": "1.2.2",
"description": "This is an module to scrap stock market data from https://fundamentus.com.br, a website that makes available financial and fundamentalist information about companies listed in Bovespa.",
"main": "index.js",
"scripts": {
"start": "node --experimental-modules index.js",
"test": "jest --runInBand --forceExit"
},
"standard": {
"env": [
"jest"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/margato/fundamentus-unofficial-api.git"
},
"type": "commonjs",
"keywords": [
"b3",
"stock",
"share",
"brazil",
"brasil",
"bolsa",
"fundamentus",
"indicadores",
"indicadores fundamentalistas",
"api",
"bovespa",
"ibovespa"
],
"author": "margato",
"license": "MIT",
"bugs": {
"url": "https://github.com/margato/fundamentus-unofficial-api/issues"
},
"homepage": "https://github.com/margato/fundamentus-unofficial-api#readme",
"dependencies": {
"camelcase": "^6.0.0",
"jest": "^25.3.0",
"jsdom": "^16.2.2"
},
"devDependencies": {
"standard": "^14.3.3"
}
}