-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
73 lines (73 loc) · 1.79 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
{
"name": "typescript-to-json-schema",
"version": "0.6.1",
"description": "Generate JSON schema from your Typescript sources",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"typescript-to-json-schema": "./bin/typescript-to-json-schema"
},
"author": {
"name": "Alexander Evtushenko",
"email": "aevtushenko@xiag.ch"
},
"contributors": [
{
"name": "Dominik Moritz",
"email": "domoritz@gmail.com"
}
],
"repository": {
"type": "git",
"url": "https://github.com/xiag-ag/typescript-to-json-schema.git"
},
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php"
}
],
"keywords": [
"ts",
"typescript",
"json",
"schema",
"jsonschema"
],
"engines": {
"node": ">=6.0.0"
},
"dependencies": {
"commander": "^2.15.1",
"glob": "^7.1.2",
"json-stable-stringify": "^1.0.1",
"typescript": "~2.8.3"
},
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/glob": "^5.0.35",
"@types/json-schema": "^6.0.1",
"@types/json-stable-stringify": "^1.0.32",
"@types/mocha": "^5.2.0",
"@types/node": "^10.1.0",
"ajv": "^6.5.0",
"chai": "^4.1.2",
"coveralls": "^3.0.1",
"mocha": "^5.1.1",
"nyc": "^11.8.0",
"source-map-support": "^0.5.6",
"ts-node": "^6.0.3",
"tslint": "^5.10.0"
},
"scripts": {
"prepublish": "npm run build",
"preversion": "npm run lint && npm run test",
"build": "tsc -p .",
"watch": "tsc -p . -w",
"lint": "tslint -p .",
"test": "nyc mocha -t 10000 test/*.test.ts",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"debug": "ts-node --inspect=19248 --debug-brk typescript-to-json-schema.ts",
"run": "ts-node typescript-to-json-schema.ts"
}
}