-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 1.1 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
{
"name": "hsbc-au-statement-parser",
"version": "0.2",
"type": "module",
"dependencies": {
"moment": "^2.30.1",
"pdf2json": "^3.1.4",
"write-excel-file": "^2.0.10"
},
"description": "HSBC Australia Statement Parser is a CLI tool that leverages the [pdf2json](https://github.com/modesty/pdf2json) node.js module to parse transaction data from PDFs.\r This tool currently works on HSBC Australia debit-like account statements (home loans, offset accounts, etc). \r\r This tool **DOES NOT** work for credit card statements. \r\r I do not have HSBC statements from other regions to test against, so your mileage may vary.",
"main": "index.mjs",
"scripts": {
"test": ""
},
"repository": {
"type": "git",
"url": "git+https://github.com/colin-tso/HSBC-AU-Statement-Parser.git"
},
"keywords": [
"HSBC",
"bank",
"statements",
"pdf",
"json"
],
"author": "Colin Tso",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/colin-tso/HSBC-AU-Statement-Parser/issues"
},
"homepage": "https://github.com/colin-tso/HSBC-AU-Statement-Parser#readme"
}