-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) · 1.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
{
"name": "ocr-space-api-wrapper",
"version": "2.3.2",
"description": "Node.js wrapper for ocr.space APIs.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"lint": "eslint ./",
"test": "nyc mocha --timeout 60000 --bail",
"coverage": "nyc --reporter=lcov --reporter=text mocha --timeout 60000 --bail"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DavideViolante/ocr-space-api-wrapper.git"
},
"keywords": [
"ocr",
"ocr-space",
"api",
"ocr api",
"wrapper",
"nodejs",
"optical character recognition",
"pdf",
"image"
],
"author": "Davide Violante",
"license": "MIT",
"bugs": {
"url": "https://github.com/DavideViolante/ocr-space-api-wrapper/issues"
},
"homepage": "https://github.com/DavideViolante/ocr-space-api-wrapper#readme",
"dependencies": {
"axios": "0.27.2",
"form-data": "^4.0.1"
},
"devDependencies": {
"eslint": "^8.57.1",
"eslint-config-google": "^0.14.0",
"mocha": "^10.7.3",
"nyc": "^17.1.0"
}
}