-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
95 lines (95 loc) · 2.39 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "stock-nse-india",
"version": "1.1.3",
"description": "This package will help us to get equity/index details and historical data from National Stock Exchange of India.",
"main": "build/index.js",
"repository": "https://github.com/VidyBack/vidyback-stockMarket.git",
"author": "Vidyabck",
"license": "MIT",
"bin": {
"nseindia": "build/cli/index.js"
},
"scripts": {
"build": "tsc",
"prestart": "yarn build",
"start": "node build/server.js",
"docs": "typedoc",
"test": "jest --coverage --testTimeout=600000",
"lint": "eslint ./src --ext .ts",
"gpr-setup": "node ./scripts/setup-gpr.js"
},
"lint-staged": {
"src/**/*.{ts,tsx,js,jsx}": [
"yarn lint --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^26.0.19",
"@types/node": "^14.14.13",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"eslint": "^7.19.0",
"husky": "^4.3.8",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"ts-jest": "^26.5.0",
"typedoc": "^0.20.23",
"typescript": "^4.1.3"
},
"dependencies": {
"asciichart": "^1.5.25",
"axios": "^0.21.2",
"chalk": "^4.1.0",
"cheerio": "^1.0.0-rc.10",
"express": "^4.17.2",
"moment": "^2.29.2",
"moment-range": "^4.0.2",
"ohlc": "^2.0.4",
"ora": "^5.4.0",
"swagger-jsdoc": "^6.1.0",
"swagger-ui-express": "^4.3.0",
"yargs": "^16.2.0"
},
"keywords": [
"nse",
"nseindia",
"nse india",
"stock",
"exchange",
"equity",
"index",
"nifty",
"stock exchange",
"stock market",
"stock market api",
"api",
"stock market data",
"nse historical",
"nse historical data",
"nse historical data api",
"historical",
"index historical",
"historical data",
"share",
"share market",
"share market api",
"share market data",
"india",
"indian stock market",
"indian stock market data",
"indian stock market api",
"indian stock market api data",
"indian share market data",
"indian share market api",
"indian share market api data"
]
}