forked from vega/ts-json-schema-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.54 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
95
96
{
"name": "ts-json-schema-generator",
"version": "1.0.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": "[email protected]"
},
"contributors": [
{
"name": "Dominik Moritz",
"email": "[email protected]"
},
{
"name": "MooYeol Prescott Lee",
"email": "[email protected]"
}
],
"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.11",
"commander": "^9.4.0",
"glob": "^8.0.3",
"json5": "^2.2.1",
"normalize-path": "^3.0.0",
"safe-stable-stringify": "^2.4.0",
"typescript": "~4.8.3"
},
"devDependencies": {
"@auto-it/conventional-commits": "^10.37.6",
"@auto-it/first-time-contributor": "^10.37.6",
"@babel/core": "^7.19.1",
"@babel/preset-env": "^7.19.1",
"@babel/preset-typescript": "^7.18.6",
"@types/glob": "^8.0.0",
"@types/jest": "^29.0.3",
"@types/node": "^18.7.18",
"@types/normalize-path": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"ajv": "^8.11.0",
"ajv-formats": "^2.1.1",
"auto": "^10.37.6",
"chai": "^4.3.6",
"cross-env": "^7.0.3",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.0.3",
"jest-junit": "^14.0.1",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"vega": "^5.22.1",
"vega-lite": "^5.5.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"
}
}