-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
57 lines (57 loc) · 1.32 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
{
"name": "terminal-stocks",
"version": "1.0.19",
"description": "Fetch stock price information on terminal",
"main": "index.js",
"bin": {
"terminal-stocks": "bin/index.js"
},
"dependencies": {
"ansi_up": "^4.0.4",
"blessed": "^0.1.81",
"blessed-contrib": "^4.11.0",
"body-parser": "^1.4.3",
"cli-table3": "^0.6.4",
"colors": "^1.4.0",
"crypto-js": "^4.2.0",
"express": "^4.19.2",
"jsonexport": "^3.2.0",
"request": "^2.88.2",
"yahoo-finance2": "^2.11.3",
"yargs": "^16.2.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"serve": "node server.js",
"watch": "nodemon server.js",
"start": "node server.js"
},
"author": "Shashi Prakash Gautam <[email protected]>",
"license": "ISC",
"devDependencies": {
"nodemon": "^2.0.22"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shweshi/terminal-stocks.git"
},
"keywords": [
"stocks",
"yahoo-finance",
"market-data",
"api",
"command-line",
"terminal-stocks",
"stock-prices",
"stock-market",
"finance",
"terminal"
],
"bugs": {
"url": "https://github.com/shweshi/terminal-stocks/issues"
},
"homepage": "https://github.com/shweshi/terminal-stocks#readme",
"directories": {
"doc": "docs"
}
}