-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 779 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 779 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
{
"name": "b1slayer-model-generator-node",
"version": "1.0.0",
"description": "Model Generator for SAP Business One Service Layer",
"license": "MIT",
"author": "Manuel Kübler",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js --metadatafile dist/servicelayer_metadata_v4.xml --namespace MyNamespace --outputdir dist/models --language ts --include test test2 --exclude test3 test4",
"start:help": "node dist/index.js --help",
"start:version": "node dist/index.js --version",
"test": "vitest"
},
"devDependencies": {
"@types/node": "^25.6.0",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
},
"dependencies": {
"commander": "^14.0.3",
"xml-trueformat": "^0.9.5"
}
}