-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
70 lines (70 loc) · 2.04 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
64
65
66
67
68
69
70
{
"name": "statement-parser",
"version": "2.0.1",
"description": "Parse bank and credit card statements.",
"keywords": [
"pdf",
"bank",
"credit card",
"finances",
"finance",
"financial",
"pdf to json",
"citi",
"chase",
"usaa",
"costco",
"prime",
"paypal",
"parser",
"statement",
"statements"
],
"homepage": "https://github.com/electrovir/statement-parser",
"bugs": {
"url": "https://github.com/electrovir/statement-parser/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/electrovir/statement-parser"
},
"license": "MIT",
"author": {
"name": "electrovir",
"url": "https://github.com/electrovir"
},
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
"scripts": {
"format": "virmator format",
"prepublishOnly": "npm run test:full",
"sanitize": "virmator compile && node dist/sanitizer/sanitize-for-test-file-cli.js",
"sanitize:all": "./bulk-sanitize.sh files/downloads",
"sanitize:no-compile": "node dist/sanitizer/sanitize-for-test-file-cli.js",
"spellcheck": "virmator spellcheck",
"test": "virmator test",
"test:file": "./test-specific-file.sh",
"test:full": "npm run test && npm run spellcheck && npm run format check && npm run update-docs -- --check",
"update-docs": "virmator code-in-markdown README.md"
},
"dependencies": {
"augment-vir": "^1.3.0",
"fs-extra": "^10.0.0",
"fsm-vir": "^1.0.1",
"pdf-text-reader": "^3.0.0",
"pdfjs-dist": "2.10.377"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/node": "^16.11.4",
"@types/pdfjs-dist": "^2.7.5",
"@types/pdfkit": "^0.12.1",
"pdfkit": "^0.13.0",
"test-vir": "^0.2.3",
"virmator": "^1.3.7"
},
"engines": {
"node": ">=12",
"npm": ">=7"
}
}