forked from fnogatz/xsd2json
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.26 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
{
"name": "xsd2json",
"version": "1.11.0",
"description": "Translate an XML Schema into equivalent JSON Schema",
"main": "index.js",
"bin": "./lib-pl/cli",
"scripts": {
"postinstall": "npm run create-qlf",
"pretest": "npm run create-qlf",
"create-qlf": "swipl -O --goal=main -o lib-pl/cli -c lib-pl/cli.pl",
"standard": "standard",
"test": "npm run standard && npm run test-cli && npm run test-converter",
"test-cli": "./lib-pl/cli --version && ./lib-pl/cli test/xsd/all_element.xsd",
"test-converter": "node test/index.js interpreted",
"test-examples": "node test/index.js validate-json"
},
"keywords": [
"XML Schema",
"XSD",
"JSON Schema",
"jsv",
"xsd",
"xml schema",
"json schema"
],
"author": "Falco Nogatz <[email protected]>",
"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"
},
"devDependencies": {
"async": "^2.0.1",
"interpreted": "^0.7.0",
"nomnom": "^1.8.0",
"standard": "^9.0.0",
"tap": "^10.0.0",
"jayschema": "^0.3.1"
}
}