-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.05 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.05 KB
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
{
"name": "stocksocket",
"version": "2.1.2",
"description": "Real-time Yahoo Stock Prices",
"main": "lib/StockSocket.js",
"types": "lib",
"scripts": {
"build": "tsc -p .",
"test": "nyc --reporter=lcov mocha && codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gregtuc/StockSocket.git"
},
"keywords": [
"stocks",
"stock markets",
"data",
"tickers",
"ticker",
"yahoo",
"free",
"prices",
"realtime",
"real-time",
"instant",
"stock data",
"finance",
"yahoo-finance",
"stock symbol"
],
"author": "Greg Tucker",
"license": "ISC",
"bugs": {
"url": "https://github.com/gregtuc/StockSocket/issues"
},
"homepage": "https://github.com/gregtuc/StockSocket#readme",
"dependencies": {
"isomorphic-ws": "^4.0.1",
"protobufjs": "^6.10.2",
"ws": "^7.4.6"
},
"devDependencies": {
"@types/node": "^15.12.2",
"chai": "^4.3.4",
"mocha": "^8.3.0",
"nyc": "^15.1.0",
"rewire": "^5.0.0",
"typescript": "^4.3.2"
}
}