-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
40 lines (40 loc) · 1.05 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
{
"name": "odata-csdl",
"version": "0.11.1",
"description": "Convert CSDL XML to CSDL JSON",
"homepage": "https://github.com/oasis-tcs/odata-csdl-schemas/blob/master/lib/README.md",
"bugs": "https://github.com/oasis-tcs/odata-csdl-schemas/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/oasis-tcs/odata-csdl-schemas.git"
},
"files": [
"lib/*",
"schemas/*",
"catalog.xml"
],
"bin": {
"odata-csdl-xml2json": "lib/cli.js"
},
"main": "lib/xml2json.js",
"dependencies": {
"colors": "^1.4.0",
"sax": "^1.4.1"
},
"devDependencies": {
"ajv": "^8.17.1",
"c8": "^10.1.2",
"eslint": "^9.8.0",
"mocha": "^10.7.0"
},
"scripts": {
"build": "npm run build-js && npm run build-xsd",
"build-js": "node lib/transform.js",
"build-xsd": "javac java/Validator.java",
"test": "npm run test-js && npm run test-xsd",
"test-js": "c8 mocha --reporter-option maxDiffSize=0",
"test-xsd": "java -cp java Validator"
},
"author": "",
"license": "SEE LICENSE IN LICENSE.md"
}