-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
71 lines (71 loc) · 1.86 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
70
71
{
"name": "mindee",
"version": "4.17.1",
"description": "Mindee Client Library for Node.js",
"main": "src/index.js",
"bin": "bin/mindee.js",
"license": "MIT",
"scripts": {
"build": "tsc --build",
"build-for-dist": "tsc --build && cp LICENSE README.md CHANGELOG.md ./dist",
"clean": "rm -rf ./dist ./docs/_build",
"test": "mocha 'tests/**/*.spec.ts'",
"test-integration": "mocha 'tests/**/*.integration.ts'",
"lint": "eslint './src/**/*.ts' --report-unused-disable-directives && echo 'Your .ts files look good.'",
"lint-fix": "eslint './src/**/*.ts' --fix",
"docs": "typedoc --out docs/_build ./src/index.ts",
"docs-for-dist": "typedoc --out docs/_build ./src/index.ts && cp -r ./docs/code_samples ./docs/_build/"
},
"files": [
"src/*",
"bin/*",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"engines": {
"node": ">= 16"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mindee/mindee-api-nodejs.git"
},
"author": {
"name": "Mindee",
"email": "[email protected]",
"url": "https://mindee.com/"
},
"bugs": {
"url": "https://github.com/mindee/mindee-api-nodejs/issues"
},
"homepage": "https://mindee.com/",
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/mocha": "^9.1.1",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"chai": "^4.3.10",
"eslint": "^8.49.0",
"eslint-plugin-jsdoc": "^46.8.2",
"mocha": "^10.1.0",
"nock": "^13.3.3",
"ts-node": "^10.9.1",
"typedoc": "~0.23",
"typescript": "^5.0.4"
},
"dependencies": {
"commander": "~9.4.1",
"file-type": "~16.5.4",
"form-data": "~3.0.1",
"pdf-lib": "~1.17.1"
},
"keywords": [
"typescript",
"mindee",
"api",
"client",
"client library",
"nodejs"
]
}