forked from bcherny/json-schema-to-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
26 lines (26 loc) · 778 Bytes
/
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
{
"name": "json-schema-to-typescript-example",
"version": "1.0.0",
"description": "",
"main": "index.js",
"typings": "index.d.ts",
"scripts": {
"build": "npm run clean && tsc && node index.js",
"clean": "rm -f index.js index.d.ts person.d.ts"
},
"dependencies": {
"@types/node": "^13.13.4",
"typescript": "3.8.3",
"json-schema-to-typescript": "9.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bcherny/json-schema-to-typescript.git"
},
"author": "Boris Cherny <[email protected]> (http://performancejs.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/bcherny/json-schema-to-typescript/issues"
},
"homepage": "https://github.com/bcherny/json-schema-to-typescript#readme"
}