forked from gaambo/sevdesk-export
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.02 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
{
"name": "sevdesk-export",
"version": "1.4.0",
"description": "Exportiert bezahlte Belege eines Monats als PDF",
"repository": {
"type": "git",
"url": "git+https://github.com/gaambo/sevdesk-export.git"
},
"keywords": [
"sevdesk"
],
"author": "Fabian Todt <[email protected]>",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/gaambo/sevdesk-export/issues"
},
"homepage": "https://github.com/gaambo/sevdesk-export#readme",
"dependencies": {
"axios": "^0.26.0",
"commander": "^9.0.0",
"csv-stringify": "^6.2.3",
"date-fns": "^2.30.0",
"dotenv": "^16.0.0",
"esm": "^3.2.25",
"ora": "^6.1.0",
"sanitize-filename": "^1.6.3",
"webdav-fs": "^4.0.1"
},
"engines": {
"node": ">=16.0.0"
},
"main": "bin/index.mjs",
"type": "module",
"bin": {
"sevdesk-export": "./bin/index.mjs"
},
"scripts": {
"run": "node -r ./bin/index.mjs",
"debug": "node -r ./src/index.mjs"
},
"devDependencies": {
"prettier": "2.8.8"
}
}