-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
35 lines (35 loc) · 886 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
{
"name": "finance-statement-scraper",
"version": "0.4.0",
"description": "Scrape Financial Statements (Balance Sheet, Profit & Loss, Cash Flow)",
"main": "index.js",
"scripts": {
"test": "npx mocha",
"versions": "npx dependency-version-checker check"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/msimerson/node-finance-statement-scraper.git"
},
"keywords": [
"finance",
"scrape",
"balance sheet",
"profit & loss",
"cash flow"
],
"author": "Matt Simerson",
"license": "MIT",
"bugs": {
"url": "https://github.com/msimerson/node-finance-statement-scraper/issues"
},
"homepage": "https://github.com/msimerson/node-finance-statement-scraper",
"dependencies": {
"crawler": "^1.5.0",
"htmlparser2": "^4.1.0"
},
"devDependencies": {
"eslint": "^8.56.0",
"mocha": "^10.2.0"
}
}