forked from spreeuwers/xsd2ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.31 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": "xsd2ts",
"version": "0.9.17",
"description": "generates template classes for an xsd",
"main": "index.js",
"scripts": {
"test:jasmine": "ts-node -r ./test/node-unittest-setup.js node_modules/jasmine/bin/jasmine.js JASMINE_CONFIG_PATH=jasmine.json",
"test:j-debug": "ts-node $NODE_DEBUG_OPTION ./test/node-unittest-setup.js node_modules/jasmine/bin/jasmine.js JASMINE_CONFIG_PATH=jasmine.json",
"compile": "tsc -p ./src",
"compile-gen": "tsc -p ./src/generated --outDir ./compiled",
"version": "npm version patch",
"setup": "npm install",
"deploy": "npm run compile && npm publish"
},
"author": "Eddy Spreeuwers",
"license": "UNLICENSED",
"repository": "https://github.com/spreeuwers/xsd2ts.git",
"dependencies": {
"@types/lodash.clonedeep": "4.5.3",
"@types/lodash.merge": "4.6.3",
"@types/node": "8.0.7",
"@types/xml-parser": "^1.2.29",
"file-loader": "0.11.2",
"fs-extra": "3.0.1",
"npm-test": "0.0.1",
"ts-code-generator": "0.0.3",
"ts-loader": "2.2.2",
"ts-node": "^8.6.2",
"typescript": "^3.9.9",
"xmldom-reborn": "^1.0.5"
},
"devDependencies": {
"@types/jasmine": "^2.8.16",
"istanbul": "1.1.0-alpha.1",
"jasmine": "^3.5.0",
"jasmine-core": "2.6.2",
"jasmine-ts": "0.2.0",
"tslint": "^5.20.1"
}
}