-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.6 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
{
"name": "jsonix-lexml",
"version": "1.0.0",
"description": "",
"author": "[email protected]",
"license": "ISC",
"main": "dist/bundle/jsonix-lexml.js",
"module": "dist/bundle/jsonix-lexml.js",
"bin": "dist/src/main.js",
"repository": {
"type": "git",
"url": "https://github.com/lexml/jsonix-lexml.git"
},
"homepage": "https://github.com/lexml/jsonix-lexml",
"bugs": {
"url": "https://github.com/lexml/jsonix-lexml/issues"
},
"keywords": [
"jsonix-lexml"
],
"files": [
"dist"
],
"scripts": {
"test": "node test.js",
"prepublish": "rimraf dist mappings && npm run build:mappings && rollup -c && npm run readme:npm",
"postpublish": "npm run readme:git",
"readme:npm": "cpy README.md ./ --rename=README.git.md && cpy README.npm.md ./ --rename=README.md",
"readme:git": "cpy README.git.md ./ --rename=README.md && rimraf README.git.md",
"build:mappings": "npm run mappings:jsonix-compiler",
"build:exe": "npm run prepublish && pkg .",
"mappings:jsonix-compiler": "java -jar node_modules/jsonix/lib/jsonix-schema-compiler-full.jar -generateJsonSchema -d mappings schemas/*.xsd"
},
"dependencies": {
"commander": "8.3.0",
"get-stdin": "9.0.0",
"jsonix": "3.0.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.1.1",
"@rollup/plugin-replace": "^3.0.0",
"cpy-cli": "^3.1.1",
"jsonix-schema-compiler": "^2.3.9",
"pkg": "^5.5.1",
"rimraf": "^3.0.2",
"rollup": "^2.62.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-polyfill-node": "^0.8.0"
}
}