forked from YousefED/typescript-json-schema
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.15 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
{
"name": "typescript-json-schema",
"version": "0.63.0",
"description": "typescript-json-schema generates JSON Schema files from your Typescript sources",
"main": "dist/typescript-json-schema.js",
"typings": "dist/typescript-json-schema.d.ts",
"bin": {
"typescript-json-schema": "./bin/typescript-json-schema"
},
"author": "Yousef El-Dardiry and Dominik Moritz",
"contributors": [
{
"name": "Yousef El-Dardiry",
"email": "[email protected]",
"url": "http://www.twitter.com/yousefed"
},
{
"name": "Dominik Moritz",
"email": "[email protected]",
"url": "https://www.domoritz.de/"
},
{
"name": "Vladimir Krivosheev",
"email": "[email protected]"
},
{
"name": "Fabian Pirklbauer",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "[email protected]:YousefED/typescript-json-schema.git"
},
"license": "BSD-3-Clause",
"keywords": [
"typescript",
"json",
"forms",
"jsonschema",
"schema"
],
"dependencies": {
"@types/json-schema": "^7.0.9",
"@types/node": "^16.9.2",
"glob": "^7.1.7",
"path-equal": "^1.2.5",
"safe-stable-stringify": "^2.2.0",
"ts-node": "^10.9.1",
"typescript": "~5.1.0",
"yargs": "^17.1.1"
},
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/glob": "^7.1.4",
"@types/mocha": "^9.0.0",
"ajv": "^8.6.3",
"ajv-formats": "^2.1.1",
"chai": "^4.3.4",
"mocha": "^9.1.3",
"prettier": "^2.4.1",
"source-map-support": "^0.5.20",
"tslint": "^6.1.3"
},
"scripts": {
"prepare": "tsc && yarn docs",
"test": "tsc && mocha -t 5000 --require source-map-support/register dist/test",
"debug": "node --inspect=19248 --inspect-brk -r ts-node/register typescript-json-schema-cli.ts",
"docs": "./update-docs.js",
"run": "ts-node typescript-json-schema-cli.ts",
"build": "tsc",
"lint": "tslint --project tsconfig.json -c tslint.json --exclude '**/*.d.ts'",
"style": "prettier --write *.js *.ts test/*.ts",
"dev": "tsc -w",
"test:dev": "mocha -t 5000 --watch --require source-map-support/register dist/test"
}
}