-
Notifications
You must be signed in to change notification settings - Fork 123
/
package.json
64 lines (64 loc) · 1.52 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
{
"name": "yahoo-finance",
"description": "Yahoo Finance historical quotes and snapshot data downloader written in Node.js",
"version": "0.3.8",
"license": "MIT",
"author": {
"name": "Pilwon Huh",
"email": "[email protected]"
},
"homepage": "https://github.com/pilwon/node-yahoo-finance",
"repository": {
"type": "git",
"url": "git://github.com/pilwon/node-yahoo-finance.git"
},
"keywords": [
"yahoo",
"finance",
"financial",
"data",
"stock",
"price",
"quote",
"historical",
"eod",
"end-of-day",
"client",
"library"
],
"dependencies": {
"bluebird": "^3.4.6",
"debug": "^2.3.3",
"lodash": "^4.17.2",
"moment": "^2.29.4",
"moment-timezone": "^0.5.10",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"string": "^3.3.3",
"tough-cookie": "^2.5.0"
},
"devDependencies": {
"@babel/polyfill": "^7.12.1",
"@babel/register": "^7.18.9",
"babel-preset-env": "^1.7.0",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"colors": "^1.4.0",
"coveralls": "^3.1.1",
"grunt": "^1.5.3",
"grunt-concurrent": "^3.0.0",
"grunt-contrib-jshint": "^3.2.0",
"grunt-contrib-watch": "^1.1.0",
"load-grunt-tasks": "^5.1.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"proxyquire": "^2.1.3",
"sinon": "^15.0.1",
"sinon-chai": "^3.7.0"
},
"scripts": {
"prepublish": "npm prune",
"test": "mocha --require @babel/register \"lib/**/*.spec.js\"",
"coverage": "nyc npm run test"
}
}