-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.29 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.29 KB
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
{
"name": "@neumaennl/xmlbind-ts",
"version": "0.18.0",
"description": "JAXB-like XML binding for TypeScript",
"author": "Martin Neumann <neumaennl@gmx.net>",
"license": "GPL-3.0-only",
"homepage": "https://github.com/neumaennl/xmlbind-ts#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/neumaennl/xmlbind-ts.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"xsd2ts": "dist/xsd/cli.js"
},
"scripts": {
"build": "tsc",
"test": "jest --runInBand",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "npm run build"
},
"dependencies": {
"@xmldom/xmldom": "^0.9.10",
"commander": "^14.0.3",
"fast-xml-builder": "^1.1.5",
"fast-xml-parser": "^5.7.2",
"reflect-metadata": "^0.2.2"
},
"devDependencies": {
"@eslint/js": "^10.0.0",
"@types/jest": "^30.0.0",
"@types/node": "^25.6.0",
"@typescript-eslint/eslint-plugin": "^8.59.1",
"@typescript-eslint/parser": "^8.56.0",
"eslint": "^10.2.1",
"eslint-plugin-jest": "^29.15.2",
"globals": "^17.5.0",
"jest": "^30.3.0",
"jest-junit": "^17.0.0",
"ts-jest": "^29.4.9",
"ts-node": "^10.0.0",
"typescript": "^5.0.0"
}
}