-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
45 lines (45 loc) · 1.16 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": "yahoo-stock-api",
"version": "2.2.0",
"description": "Simple package to get stock price from yahoo finance",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "ts-node src/test/test.ts",
"test1": "ts-node test.ts",
"lint": "eslint src/**/*.ts",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/phamleduy04/yahoo-stock-api.git"
},
"author": "phamleduy04",
"license": "MIT",
"bugs": {
"url": "https://github.com/phamleduy04/yahoo-stock-api/issues"
},
"homepage": "https://github.com/phamleduy04/yahoo-stock-api#readme",
"devDependencies": {
"@types/node": "^20.5.1",
"@types/numeral": "^2.0.2",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.2",
"ts-node": "^10.9.1",
"tslib": "^2.6.2",
"typescript": "^5.1.6"
},
"dependencies": {
"camelcase": "6.3.0",
"cheerio": "1.0.0-rc.12",
"numeral": "^2.0.6",
"undici": "^5.23.0"
},
"files": [
"dist"
]
}