forked from danschultzer/receipt-scanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.57 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
{
"name": "receipt-scanner",
"version": "0.4.0",
"description": "Extracts information from your PDF or image receipts.",
"main": "main.js",
"author": "Dan Schultzer <[email protected]>",
"contributors": [
"Benjamin Schultzer <[email protected]>"
],
"repository": {
"type": "git",
"url": "http://github.com/danschultzer/receipt-scanner.git"
},
"scripts": {
"test": "mocha --recursive",
"test watch": "mocha --recursive --watch",
"cover": "nyc mocha --recursive && standard",
"scan": "./cli.js -p -s",
"verbose": "./cli.js -p -s -v",
"benchmark": "./benchmark/image_preprocessors.js",
"generate-benchmark-sample": "./benchmark/generate.js"
},
"keywords": [
"computer vision",
"graphicsmagick",
"imagemagick",
"invoice",
"OCR",
"optical character recognition",
"opencv",
"preprocessing",
"receipt",
"scanner",
"sharp",
"tesseract"
],
"bin": {
"receipt-scanner": "./cli.js"
},
"files": [
"lib",
"cli.js",
"main.js"
],
"license": "MIT",
"dependencies": {
"chrono-node": "^1.2.5",
"commander": "^2.9.0",
"mime": "^1.3.4",
"node-tesseract": "^0.2.7",
"opencv": "^6.0.0",
"pdf-text-extract": "^1.4.1",
"progress": "^1.1.8",
"tmp": "^0.0.31"
},
"optionalDependencies": {
"gm": "^1.23.0",
"sharp": "^0.16.2"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^3.1.0",
"nodemon": "^1.10.2",
"nyc": "^10.0.0",
"screenshot-stream": "4.1.0",
"sinon": "^1.17.6",
"standard": "^8.6.0"
}
}