-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (35 loc) · 795 Bytes
/
package.json
File metadata and controls
40 lines (35 loc) · 795 Bytes
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
{
"name": "hsbc-statement-parser",
"version": "0.1.3",
"license": "BSD",
"description": "Parses and converts HSBC bank statements downloaded in PDF format into a list of operations in JSON or TSV format.",
"homepage": "https://github.com/adrienjoly/HsbcStatementParser",
"main": "./hsbcextr.js",
"keywords": [
"hsbc",
"bank",
"qif",
"money",
"comptes",
"finance",
"pdf",
"pdf parser",
"convert pdf to json",
"JSON"
],
"author": {
"name": "Adrien Joly",
"email": "adrien.joly@gmail.com",
"url": "http://adrienjoly.com"
},
"repository": {
"type": "git",
"url": "git://github.com/adrienjoly/HsbcStatementParser.git"
},
"engines": {
"node": ">=0.8"
},
"dependencies": {
"pdf2json": "0.6.2"
}
}