-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
54 lines (54 loc) · 1.27 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
51
52
53
54
{
"name": "json-schema-typescript-generator",
"version": "2.2.1",
"author": {
"name": "Nathan Adams",
"url": "https://github.com/NathanJAdams"
},
"license": "MIT",
"homepage": "https://github.com/NathanJAdams/json-schema-to-ts",
"repository": {
"url": "https://github.com/NathanJAdams/json-schema-to-ts"
},
"keywords": [
"generate",
"file",
"json",
"schema",
"json-schema",
"ts",
"typescript"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"json-schema-typescript-generator": "./dist/cli/generate.js"
},
"scripts": {
"generate": "ts-node src/cli/generate.ts generate",
"build": "yarn lint && yarn tsc",
"lint": "eslint . --fix",
"test": "jest --silent=false",
"tsc": "rimraf ./dist && tsc"
},
"dependencies": {
"commander": "12.1.0",
"rimraf": "3.0.2"
},
"devDependencies": {
"@types/jest": "29.2.4",
"@types/node": "18.11.17",
"@types/rimraf": "3.0.2",
"@typescript-eslint/eslint-plugin": "5.46.1",
"@typescript-eslint/parser": "5.46.1",
"eslint": "8.30.0",
"eslint-plugin-react": "7.31.11",
"jest": "29.3.1",
"ts-jest": "29.0.3",
"ts-node": "10.9.1",
"typescript": "4.9.4"
},
"resolutions": {
"path-parse": "1.0.7"
}
}