forked from vega/ts-json-schema-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.46 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "ts-json-schema-generator",
"version": "0.95.0",
"description": "Generate JSON schema from your Typescript sources",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"ts-json-schema-generator": "./bin/ts-json-schema-generator"
},
"files": [
"dist",
"src",
"factory",
"index.*",
"ts-json-schema-generator.*"
],
"author": {
"name": "Alexander Evtushenko",
"email": "aevtushenko@xiag.ch"
},
"contributors": [
{
"name": "Dominik Moritz",
"email": "domoritz@gmail.com"
},
{
"name": "MooYeol Prescott Lee",
"email": "mooyoul@gmail.com"
}
],
"repository": {
"type": "git",
"url": "https://github.com/vega/ts-json-schema-generator.git"
},
"license": "MIT",
"keywords": [
"ts",
"typescript",
"json",
"schema",
"jsonschema"
],
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"@types/json-schema": "^7.0.9",
"commander": "^9.0.0",
"glob": "^7.2.0",
"safe-stable-stringify": "^2.3.1",
"json5": "^2.2.0",
"typescript": "~4.6.2"
},
"devDependencies": {
"@auto-it/conventional-commits": "^10.32.5",
"@auto-it/first-time-contributor": "^10.32.5",
"@babel/core": "^7.16.7",
"@babel/preset-env": "^7.16.8",
"@babel/preset-typescript": "^7.16.7",
"@types/glob": "^7.2.0",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"ajv": "^8.8.2",
"ajv-formats": "^2.1.1",
"auto": "^10.32.5",
"chai": "^4.3.4",
"cross-env": "^7.0.3",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.4.7",
"jest-junit": "^13.0.0",
"prettier": "^2.5.1",
"ts-node": "^10.4.0",
"vega": "^5.21.0",
"vega-lite": "^5.2.0"
},
"scripts": {
"prepublishOnly": "yarn build",
"build": "tsc",
"watch": "tsc -w",
"lint": "eslint \"{src,test,factory}/**/*.ts\"",
"format": "yarn lint --fix",
"test": "jest test/ --verbose",
"test:fast": "cross-env FAST_TEST=1 jest test/ --verbose",
"test:coverage": "yarn jest test/ --collectCoverage=true",
"test:update": "cross-env UPDATE_SCHEMA=true yarn test:fast",
"debug": "node -r ts-node/register --inspect-brk ts-json-schema-generator.ts",
"run": "ts-node-transpile-only ts-json-schema-generator.ts",
"release": "yarn build && auto shipit"
}
}