-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
45 lines (45 loc) · 1.01 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
{
"name": "investing-com-api",
"version": "4.4.0",
"description": "Unofficial APIs for Investing.com website.",
"main": "index.js",
"scripts": {
"lint": "eslint ./",
"test": "jest --forceExit",
"coverage": "jest --coverage --forceExit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DavideViolante/investing-com-api.git"
},
"keywords": [
"investing",
"api",
"investing.com",
"finance",
"markets",
"nasdaq",
"futures",
"currency",
"exchange",
"etf"
],
"author": "Davide Violante",
"license": "MIT",
"bugs": {
"url": "https://github.com/DavideViolante/investing-com-api/issues"
},
"homepage": "https://github.com/DavideViolante/investing-com-api#readme",
"jest": {
"coveragePathIgnorePatterns": ["functions.js"]
},
"dependencies": {
"puppeteer": "^22.15.0"
},
"devDependencies": {
"eslint": "^8.57.1",
"eslint-config-google": "^0.14.0",
"jest": "^29.7.0",
"jest-puppeteer": "^10.1.2"
}
}