forked from mindee/mindee-api-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.38 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
{
"name": "mindee",
"version": "1.3.0",
"description": "Mindee Client Library for Node.js",
"main": "mindee/index.js",
"license": "MIT",
"scripts": {
"build": "babel mindee -d lib",
"test": "npm run build && mocha tests/**/*.js",
"lint": "eslint 'mindee/**/*.js' 'tests/*.js' --max-warnings=0 --report-unused-disable-directives && echo '✔ Your .js files look good.'",
"documentation": "jsdoc -r mindee -d docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mindee/mindee-api-nodejs.git"
},
"author": "@techmindee",
"bugs": {
"url": "https://github.com/mindee/mindee-api-nodejs/issues"
},
"homepage": "https://github.com/mindee/mindee-api-nodejs/#readme",
"devDependencies": {
"@babel/cli": "^7.12.8",
"@babel/core": "^7.12.9",
"@babel/eslint-parser": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/register": "^7.12.1",
"chai": "^4.2.0",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"jsdoc": "^3.6.6",
"mocha": "^8.2.1",
"prettier": "^2.2.0"
},
"dependencies": {
"base64-arraybuffer": "^1.0.2",
"base64-stream": "^1.0.0",
"concat-stream": "^2.0.0",
"file-type": "^16.5.3",
"form-data": "^3.0.1",
"pdf-lib": "^1.17.1"
},
"keywords": [
"javascript",
"mindee",
"api",
"SDK",
"nodejs"
]
}