-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.49 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
{
"name": "yahoo-finance-api",
"version": "0.2.1",
"description": "Get Earnings from Yahoo Finance",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"lint": "tslint -p ./tsconfig.json",
"lint:fix": "tslint -p ./tsconfig.json --fix",
"prettier": "prettier --check 'src/**/*.ts'",
"prettier:fix": "prettier --write 'src/**/*.ts' 'test/**/*.ts'",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gregfrasco/yahoo-finance-api.git"
},
"author": "Greg Frasco",
"license": "MIT",
"bugs": {
"url": "https://github.com/gregfrasco/yahoo-finance-api/issues"
},
"homepage": "https://github.com/gregfrasco/yahoo-finance-api#readme",
"keywords": [
"earnings",
"calendar",
"stock",
"earning",
"yahoo",
"finance"
],
"dependencies": {
"date-fns": "2.14.0",
"puppeteer": "3.3.0"
},
"devDependencies": {
"@types/jest": "25.2.3",
"@types/puppeteer": "3.0.0",
"jest": "26.0.1",
"prettier": "2.0.5",
"ts-jest": "26.1.0",
"tslint": "6.1.2",
"typescript": "3.9.3"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "test",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}