forked from mitre/jsonix
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.19 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.19 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@dein-ticket-shop/jsonix",
"version": "0.0.0",
"description": "Jsonix (JSON interfaces for XML) is a JavaScript library which allows converting between XML and JSON structures.",
"keywords": [
"json",
"xml",
"unmarshal",
"unmarshalling",
"marshal",
"marshalling",
"parse",
"parsing",
"serialize",
"serializing",
"javascript objects",
"dom",
"util",
"utility",
"jaxb",
"jsonix"
],
"homepage": "http://github.com/dein-ticket-shop/jsonix",
"bugs": {
"url": "http://github.com/dein-ticket-shop/jsonix/issues"
},
"licenses": [
{
"type": "BSD-3-Clause",
"url": "http://github.com/highsource/jsonix/raw/master/LICENSE"
}
],
"author": {
"name": "Alexey Valikov",
"url": "http://github.com/highsource"
},
"contributors": [
{
"name": "Conrad Pankoff",
"url": "https://github.com/deoxxa"
},
{
"name": "Hannes Rüger",
"url": "https://github.com/hrueger"
}
],
"repository": {
"url": "http://github.com/dein-ticket-shop/jsonix.git"
},
"scripts": {
"test": "nodeunit tests/tests.js",
"build": "esbuild --platform=node --bundle --minify --format=esm --outfile=dist/index.js src/index.js && esbuild --platform=node --bundle --minify --format=esm --outfile=dist/compiler.js --banner:js='import { createRequire as topLevelCreateRequire } from \"module\";\nconst require = topLevelCreateRequire(import.meta.url);' src/compiler.ts && tsc --project tsconfig.json"
},
"devDependencies": {
"@types/node": "^22.13.9",
"@xmldom/xmldom": "^0.9.7",
"esbuild": "^0.25.0",
"json-schema-to-typescript": "^15.0.4",
"node-static": "^0.7.11",
"nodeunit": "^0.11.3",
"typescript": "^5.8.2"
},
"files": [
"dist",
"libs"
],
"type": "module",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./compiler": "./dist/compiler.js"
}
}