forked from pilwon/node-yahoo-finance
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.65 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.7",
"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.17.1",
"moment-timezone": "^0.5.10",
"request": "^2.79.0",
"request-promise": "^4.2.1",
"string": "^3.3.3",
"tough-cookie": "^2.3.2"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.5.0",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"colors": "1.1.2",
"coveralls": "^2.13.1",
"grunt": "1.0.1",
"grunt-concurrent": "2.3.1",
"grunt-contrib-jshint": "^1.1.0",
"grunt-contrib-watch": "1.0.0",
"load-grunt-tasks": "3.5.2",
"mocha": "^3.4.1",
"proxyquire": "^1.8.0",
"sinon": "^2.3.1",
"sinon-chai": "^2.10.0"
},
"scripts": {
"prepublish": "npm prune",
"test": "mocha --require babel-polyfill --compilers js:babel-core/register \"lib/**/*.spec.js\" tests",
"coverage": "istanbul cover _mocha --require babel-polyfill --compilers js:babel-core/register \"lib/**/*.spec.js\" tests -R spec"
}
}