forked from thomasthiebaud/fastify-schema-to-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.76 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
55
56
57
58
59
60
61
62
{
"name": "fastify-schema-to-typescript",
"version": "5.0.4",
"description": "Convert json schema for Fastify to typescript interface",
"main": "./dist/index.js",
"bin": {
"fastify-schema-to-typescript": "./dist/src/cli.js"
},
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"prepare": "husky install",
"clean": "rimraf ./dist",
"build": "npm run clean && tsc",
"lint": "prettier --check .",
"lint:fix": "prettier --write .",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thomasthiebaud/fastify-schema-to-typescript.git"
},
"author": "Thomas Thiebaud",
"license": "MIT",
"bugs": {
"url": "https://github.com/thomasthiebaud/fastify-schema-to-typescript/issues"
},
"homepage": "https://github.com/thomasthiebaud/fastify-schema-to-typescript#readme",
"devDependencies": {
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.4",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/glob": "^7.2.0",
"@types/jest": "^28.1.1",
"@types/js-yaml": "^4.0.5",
"@types/node": "^17.0.40",
"fastify": "^3.29.0",
"husky": "^8.0.1",
"jest": "^28.1.0",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.2",
"ts-jest": "^28.0.4",
"ts-node": "^10.8.1",
"typescript": "^4.7.3"
},
"dependencies": {
"commander": "^9.3.0",
"glob": "^8.0.3",
"js-yaml": "^4.1.0",
"json-schema-to-typescript": "^10.1.5"
},
"peerDependencies": {
"fastify": "^3.21.6"
}
}