forked from ThomasAribart/json-schema-to-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.15 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
{
"name": "@bloomprotocol/json-schema-to-ts",
"version": "1.6.7",
"description": "Infer typescript types from your JSON schemas!",
"main": "index.js",
"typings": "lib/index.d.ts",
"scripts": {
"release": "bash scripts/release.bash",
"test": "tsc --noEmit && jest --verbose"
},
"dependencies": {
"@types/json-schema": "^7.0.6",
"ts-toolbelt": "^6.15.5"
},
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@types/jest": "^26.0.4",
"ajv": "^6.12.6",
"babel-jest": "^26.1.0",
"jest": "^26.6.3",
"rollup": "^2.45.2",
"rollup-plugin-dts": "1.4.10",
"rollup-plugin-import-map": "^2.2.2",
"typescript": "^3.9.6"
},
"author": "Thomas Aribart",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ThomasAribart/json-schema-to-ts.git"
},
"keywords": [
"json",
"schema",
"typescript",
"type",
"ts"
],
"bugs": {
"url": "https://github.com/ThomasAribart/json-schema-to-ts/issues"
},
"homepage": "https://github.com/ThomasAribart/json-schema-to-ts#readme"
}