forked from ThomasAribart/json-schema-to-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.3 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
{
"name": "json-schema-to-ts",
"version": "2.1.2",
"description": "Infer typescript types from your JSON schemas!",
"main": "lib/index.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"release": "bash scripts/release.bash",
"test": "yarn test:type && yarn test:unit",
"test:type": "tsc --noEmit",
"test:unit": "jest --verbose",
"build": "tsc -p tsconfig.build.json"
},
"dependencies": {
"@types/json-schema": "^7.0.9",
"ts-toolbelt": "^9.6.0",
"ts-algebra": "^1.0.1"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/jest": "^27.4.0",
"ajv": "^8.10.0",
"babel-jest": "^27.5.1",
"jest": "^27.1.1",
"rollup": "^2.67.3",
"rollup-plugin-dts": "4.1.0",
"rollup-plugin-import-map": "^2.2.2",
"typescript": "^4.5.5"
},
"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"
}