-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.43 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
58
59
60
{
"name": "investing-com-api",
"version": "5.0.3",
"description": "Unofficial APIs for Investing.com website.",
"main": "dist/bundle.min.cjs",
"type": "module",
"types": "index.d.ts",
"scripts": {
"lint": "eslint ./src",
"test": "jest",
"coverage": "jest --coverage",
"build": "rimraf dist && rollup --config",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/odrail/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/odrail/investing-com-api/issues"
},
"homepage": "https://github.com/odrail/investing-com-api#readme",
"files": [
"dist/bundle.min.cjs",
"index.d.ts"
],
"devDependencies": {
"@eslint/js": "^9.16.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.1",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.1",
"eslint": "^9.16.0",
"eslint-config-google": "^0.14.0",
"jest": "^29.7.0",
"nock": "^14.0.0-beta.15",
"rimraf": "^6.0.1",
"rollup": "^4.28.1",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"tslib": "^2.8.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.17.0"
}
}