-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
57 lines (57 loc) · 1.39 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
{
"name": "finviz-screener",
"version": "1.1.3",
"description": "FinViz screener library for Node.js",
"keywords": [
"FinViz",
"screener",
"stocks",
"trading",
"finance"
],
"author": "@knicola",
"license": "MIT",
"main": "src/index.js",
"files": [
"src/",
"types/",
"docs/"
],
"types": "types/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/knicola/finviz-screener.git"
},
"bugs": {
"url": "https://github.com/knicola/finviz-screener/issues"
},
"homepage": "https://github.com/knicola/finviz-screener#readme",
"scripts": {
"lint": "eslint ./src",
"coverage": "jest --coverage",
"test": "jest",
"build:code": "node scripts/code/generate",
"build:docs": "node scripts/docs/generate",
"build:types": "node scripts/types/generate",
"build": "npm run build:code && npm run build:types && npm run build:docs"
},
"dependencies": {
"axios": "^0.23.0",
"axios-rate-limit": "^1.3.0",
"cheerio": "^1.0.0-rc.10"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"axios-mock-adapter": "^1.20.0",
"change-case": "^4.1.2",
"ejs": "^3.1.6",
"eslint": "^8.0.1",
"eslint-plugin-jsdoc": "^36.1.1",
"htmlparser2": "^7.1.2",
"jest": "^27.2.5",
"jsdoc": "^3.6.7",
"jsdoc-to-markdown": "^7.1.0",
"jsdoc-ts-utils": "^2.0.1",
"lodash": "^4.17.21"
}
}