-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.17 KB
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
{
"name": "@ts-common/schema2ts",
"version": "0.0.47",
"description": "JSON Schema to TypeScript",
"main": "index.js",
"bin": {
"schema2ts": "./bin/schema2ts"
},
"scripts": {
"prepack": "npm install && tsc",
"tsc": "tsc",
"schema2ts": "tsc && node index.js",
"test": "tsc && nyc mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sergey-shandar/schema2ts.git"
},
"keywords": [
"json",
"schema",
"typescript"
],
"author": "Sergey Shandar",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/sergey-shandar/schema2ts/issues"
},
"homepage": "https://github.com/sergey-shandar/schema2ts#readme",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.10",
"chai": "^4.2.0",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"typescript": "^3.2.1"
},
"files": [
"bin/schema2ts",
"lib.js"
],
"dependencies": {
"@ts-common/iterator": "0.1.1",
"@ts-common/json": "0.1.5",
"@ts-common/json-parser": "0.3.1",
"@ts-common/schema": "0.0.4",
"@ts-common/string-map": "0.2.2",
"tslib": "^1.9.3"
}
}