forked from fnogatz/xsd2json
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 952 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 952 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
{
"name": "xsd2json",
"version": "1.1.0",
"description": "Translate an XML Schema into equivalent JSON Schema",
"main": "index.js",
"bin": "./bin/xsd2json",
"scripts": {
"test": "npm run-script test-converter",
"test-converter": "node test/index.js interpreted",
"test-examples": "node test/index.js validate-json"
},
"keywords": [
"XML Schema",
"XSD",
"JSON Schema",
"jsv"
],
"author": "Falco Nogatz <fnogatz@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/fnogatz/xsd2json.git"
},
"bugs": {
"url": "http://github.com/fnogatz/xsd2json/issues"
},
"dependencies": {
"char-spinner": "^1.0.1",
"commander": "^2.5.0",
"concat-stream": "^1.4.6",
"duplex-child-process": "0.0.5"
},
"devDependencies": {
"async": "^0.9.0",
"interpreted": "^0.5.0",
"nomnom": "^1.8.0",
"tap": "^0.4.13",
"tv4": "^1.1.4"
}
}