forked from YousefED/typescript-json-schema
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.99 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
{
"name": "typescript-json-schema",
"version": "0.43.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"
},
"licenses": [
{
"type": "BSD-3-Clause"
}
],
"keywords": [
"typescript",
"json",
"forms",
"jsonschema",
"schema"
],
"dependencies": {
"@types/json-schema": "^7.0.5",
"glob": "~7.1.6",
"json-stable-stringify": "^1.0.1",
"typescript": "~4.0.2",
"yargs": "^15.4.1"
},
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/glob": "^7.1.3",
"@types/json-stable-stringify": "^1.0.32",
"@types/mocha": "^8.0.3",
"@types/node": "^14.6.0",
"ajv": "^6.12.4",
"chai": "^4.2.0",
"mocha": "^8.1.1",
"source-map-support": "^0.5.19",
"ts-node": "^9.0.0",
"tslint": "^6.1.3"
},
"scripts": {
"prepublishOnly": "npm run build",
"test": "npm run build && mocha -t 5000 --require source-map-support/register dist/test",
"debug": "ts-node --inspect=19248 --debug-brk typescript-json-schema-cli.ts",
"docs": "./update-docs.js",
"run": "ts-node typescript-json-schema-cli.ts",
"build": "tsc -p .",
"lint": "tslint --project tsconfig.json -c tslint.json --exclude '**/*.d.ts'"
}
}