-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.65 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.65 KB
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 <dan@dreamconception.com>",
"contributors": [
"Benjamin Schultzer <benjamin@schultzer.com>"
],
"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.3.5",
"commander": "^2.15.1",
"mime": "^2.3.1",
"node-tesseract": "git://github.com/desmondmorris/node-tesseract.git",
"opencv": "git://github.com/peterbraden/node-opencv.git",
"pdf-text-extract": "^1.5.0",
"progress": "^2.0.0",
"tmp": "^0.0.33"
},
"optionalDependencies": {
"gm": "^1.23.1",
"sharp": "^0.17.3"
},
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^5.2.0",
"nodemon": "^1.17.5",
"nyc": "^12.0.2",
"screenshot-stream": "4.2.0",
"sinon": "^5.1.0",
"standard": "^11.0.1"
}
}