-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 912 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 912 Bytes
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
{
"name": "jsons2ts",
"version": "1.2.0",
"description": "Generate typescript code from json schema",
"main": "dist/index.js",
"bin": {
"jsons2ts": "dist/index.js"
},
"scripts": {
"prejsons2ts": "npx tsc",
"predev": "npx tsc",
"jsons2ts": "node dist/index.js",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/index.js\"",
"publish": "npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pratikpparikh/jsons2ts.git"
},
"keywords": [
"json",
"schema",
"typescript",
"package.json"
],
"author": "Pratik Parikh",
"license": "MIT",
"bugs": {
"url": "https://github.com/pratikpparikh/jsons2ts/issues"
},
"homepage": "https://github.com/pratikpparikh/jsons2ts#readme",
"devDependencies": {
"fs": "^0.0.1-security",
"fs-extra": "^11.1.0",
"json-schema-to-typescript": "^11.0.3"
}
}