-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
47 lines (47 loc) · 1.33 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
{
"name": "docuware_ts_rest",
"version": "1.0.0",
"description": "Sample application to call DocuWare REST API with http client 'request'",
"main": "index.js",
"scripts": {
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"start": "node ./dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"tsc": "tsc"
},
"keywords": [
"docuware"
],
"author": "DocuWare GmbH - Dominik Peukert - Team SDK",
"license": "MIT",
"dependencies": {
"@types/tar": "^4.0.5",
"archiver": "^5.3.0",
"content-disposition": "^0.5.3",
"https": "^1.0.0",
"mime-types": "^2.1.34",
"polly-js": "^1.8.2",
"read-chunk": "^4.0.2",
"request": "^2.88.2",
"request-promise-native": "^1.0.9",
"tar": "^6.1.11",
"timespan": "^2.3.0",
"tough-cookie": "^4.0.0"
},
"devDependencies": {
"@microsoft/tsdoc": "^0.13.2",
"@types/archiver": "^5.3.1",
"@types/content-disposition": "^0.5.4",
"@types/mime-types": "^2.1.1",
"@types/node": "^16.6.1",
"@types/request": "^2.48.8",
"@types/request-promise-native": "^1.0.18",
"@types/tough-cookie": "^4.0.1",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^3.7.1",
"eslint": "^7.32.0",
"typedoc": "^0.22.11",
"typedoc-plugin-markdown": "^3.10.4",
"typescript": "^4.3.5"
}
}