-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 938 Bytes
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 938 Bytes
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": "simple-vertec-api",
"description": "Simple Vertec Api for node.js",
"version": "5.4.0",
"type": "module",
"author": "Dimitri König <dimitri@dimitrikoenig.net>",
"contributors": [
{
"name": "Dimitri König",
"email": "dimitri@dimitrikoenig.net"
}
],
"repository": {
"type": "git",
"url": "https://github.com/dimitri-koenig/simple-vertec-api.git"
},
"bugs": {
"url": "https://github.com/dimitri-koenig/simple-vertec-api/issues"
},
"dependencies": {
"axios": "^1.7.4",
"axios-retry": "^4.5.0",
"fast-xml-parser": "^5.4.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"chai": "^5.1.1",
"mocha": "^11.7.5",
"sinon": "^18.0.0"
},
"keywords": [
"vertec",
"nodejs"
],
"main": "./lib/index.js",
"exports": "./lib/index.js",
"scripts": {
"test": "make test"
},
"license": "MIT",
"engines": {
"node": ">=20"
}
}