forked from YousefED/typescript-json-schema
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.66 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
{
"name": "typescript-json-schema",
"version": "0.12.0",
"description": "typescript-json-schema generates JSON Schema files from your Typescript sources",
"main": "typescript-json-schema.js",
"typings": "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/"
}
],
"repository": {
"type": "git",
"url": "[email protected]:YousefED/typescript-json-schema.git"
},
"licenses": [
{
"type": "Apache",
"url": "http://www.apache.org/licenses/LICENSE-2.0.html"
}
],
"keywords": [
"typescript",
"json",
"forms",
"jsonschema",
"schema"
],
"dependencies": {
"glob": "~7.1.2",
"json-stable-stringify": "^1.0.1",
"typescript": "~2.1.5",
"yargs": "^8.0.1"
},
"devDependencies": {
"@types/assertion-error": "^1.0.30",
"@types/chai": "^3.5.2",
"@types/glob": "^5.0.30",
"@types/json-stable-stringify": "^1.0.31",
"@types/mocha": "^2.2.41",
"@types/node": "^7.0.22",
"ajv": "^5.1.5",
"chai": "^4.0.0",
"mocha": "^3.4.2",
"source-map-support": "^0.4.15",
"tslint": "^5.3.2"
},
"scripts": {
"test": "npm run build && mocha -t 5000 --require source-map-support/register test",
"build": "tsc -p .",
"lint": "tslint --project tsconfig.json -c tslint.json --type-check --exclude '**/*.d.ts'"
}
}