-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
39 lines (39 loc) · 947 Bytes
/
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
{
"name": "yahoo-stock-prices",
"version": "1.1.0",
"description": "Node.js API to get stock prices from Yahoo finance",
"main": "yahoo-stock-prices.js",
"directories": {
"test": "tests"
},
"dependencies": {
"request": "^2.81.0"
},
"devDependencies": {
"eslint": "^7.17.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"jest": "^26.6.3"
},
"scripts": {
"lint": "node_modules/.bin/eslint *.js test/**/*.js --fix",
"test": "node_modules/.bin/jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/darthbatman/yahoo-stock-prices.git"
},
"keywords": [
"yahoo",
"stocks",
"stock",
"prices",
"finance"
],
"author": "Rishi Masand",
"license": "MIT",
"bugs": {
"url": "https://github.com/darthbatman/yahoo-stock-prices/issues"
},
"homepage": "https://github.com/darthbatman/yahoo-stock-prices#readme"
}