forked from vega/ts-json-schema-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.4 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
97
98
99
100
101
{
"name": "ts-json-schema-generator",
"version": "0.67.1",
"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"
},
"author": {
"name": "Alexander Evtushenko",
"email": "[email protected]"
},
"contributors": [
{
"name": "Dominik Moritz",
"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": ">=6.0.0"
},
"dependencies": {
"@types/json-schema": "^7.0.4",
"commander": "~5.0.0",
"glob": "~7.1.6",
"json-stable-stringify": "^1.0.1",
"typescript": "~3.8.3"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/jest": "^25.2.1",
"@types/json-stable-stringify": "^1.0.32",
"@types/node": "^13.11.1",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"ajv": "~6.12.0",
"chai": "~4.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^25.3.0",
"jest-junit": "^10.0.0",
"prettier": "^2.0.4",
"source-map-support": "~0.5.16",
"ts-jest": "^25.4.0",
"ts-node": "^8.8.2"
},
"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": "FAST_TEST=1 jest test/ --verbose",
"debug": "node -r ts-node/register --inspect-brk ts-json-schema-generator.ts",
"run": "ts-node ts-json-schema-generator.ts"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"testPathIgnorePatterns": [
"node_modules",
"test-runtime",
"<rootDir>/build",
"_site",
"src",
"dist"
],
"coverageReporters": [
"html",
"cobertura"
],
"coverageDirectory": "./coverage/",
"collectCoverage": false,
"testEnvironment": "node"
}
}