-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.24 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
{
"name": "ts-transform-json-schema",
"version": "2.0.3",
"description": "Generate inline JSON schema from TypeScript types",
"files": [
"lib",
"index.d.ts",
"index.js"
],
"scripts": {
"test": "jest",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/marionebl/ts-transform-json-schema.git"
},
"keywords": [
"ts-transform"
],
"author": "Mario Nebl <hello@mario-nebl.de>",
"license": "MIT",
"bugs": {
"url": "https://github.com/marionebl/ts-transform-json-schema/issues"
},
"homepage": "https://github.com/marionebl/ts-transform-json-schema#readme",
"devDependencies": {
"@types/jest": "^24.0.23",
"@types/json5": "^0.0.30",
"@types/node": "^10.10.3",
"@types/require-from-string": "^1.2.0",
"@types/resolve": "^0.0.8",
"@types/resolve-from": "^4.0.0",
"jest": "^24.9.0",
"jest-cli": "^24.9.0",
"require-from-string": "^2.0.2",
"ts-jest": "^24.1.0",
"ts-node": "^8.5.2",
"ts-transformer-testing-library": "^1.0.0-alpha.3",
"ttypescript": "^1.5.8"
},
"dependencies": {
"@marionebl/typescript-json-schema": "^0.36.0",
"json5": "^2.1.1",
"typescript": "^3.5.3",
"typescript-json-schema": "^0.42.0"
}
}