-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
58 lines (58 loc) · 1.32 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
{
"name": "@veryfi/veryfi-sdk",
"version": "1.4.2",
"description": "Node.js module for communicating with the Veryfi OCR API",
"main": "lib/client/client.js",
"typings": "lib/types/Client.ts",
"scripts": {
"test": "jest",
"doc": "jsdoc -d docs --configure jsconf.json main.js",
"generate-docs": "jsdoc --configure jsdoc.json --verbose"
},
"author": "Veryfi <support@veryfi.com> (https://www.veryfi.com)",
"homepage": "https://veryfi.github.io/veryfi-nodejs/",
"contributors": [
"Matthew Eng <matthew@veryfi.com>",
"Alejandro Uribe <alejandro@veryfi.com>"
],
"license": "MIT",
"files": [
"lib",
"lib/types"
],
"directories": {
"lib": "lib",
"test": "test"
},
"devDependencies": {
"jest": "^29.0.0",
"jsdoc": "^4.0.3",
"minami": "^1.2.3",
"ts-jest": "^29.0.1",
"typescript": "^4.8.3"
},
"dependencies": {
"@jest/globals": "^29.0.3",
"axios": "^1.7.4",
"docdash": "^1.2.0",
"form-data": "^4.0.0",
"jest-config": "^29.0.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/veryfi/veryfi-nodejs.git"
},
"keywords": [
"nodejs",
"api",
"ocr",
"receipt",
"invoice",
"sdk-nodejs",
"veryfi",
"veryfi-api"
],
"bugs": {
"url": "https://github.com/veryfi/veryfi-nodejs/issues"
}
}