-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 946 Bytes
/
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
{
"name": "yahoo-nse-api",
"version": "1.0.5",
"description": "A Yahoo API Wrapper for getting quotes from the national stock exchance (NSE) ",
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json"
},
"files": [
"lib/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/devAgam/yahoo-nse-api.git"
},
"keywords": [
"nse",
"yahoo",
"finance",
"api",
"stocks"
],
"author": "devAgam",
"license": "MIT",
"bugs": {
"url": "https://github.com/devAgam/yahoo-nse-api/issues"
},
"homepage": "https://github.com/devAgam/yahoo-nse-api#readme",
"devDependencies": {
"@types/node-fetch": "^2.6.3",
"prettier": "^2.8.8",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.0.4"
},
"dependencies": {
"node-fetch": "^2.6.11"
}
}