forked from highsource/jsonix
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
61 lines (61 loc) · 1.18 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@mitre/jsonix",
"version": "3.0.7",
"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/mitre/jsonix",
"bugs": {
"url": "http://github.com/mitre/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"
}
],
"main": "jsonix.js",
"repository": {
"type": "git",
"url": "http://github.com/mitre/jsonix.git"
},
"types": "./types/main.d.ts",
"scripts": {
"test": "nodeunit tests/tests.js"
},
"dependencies": {
"@xmldom/xmldom": "^0.8.2",
"amdefine": "^0.0.4",
"xmlhttprequest": "^1.8.0"
},
"devDependencies": {
"node-static": "^0.7.11",
"nodeunit": "^0.11.3"
}
}