-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "types2schema",
"version": "1.0.1",
"description": "A Typescript transformer plugin to convert Typescript type to JSON Schema.",
"main": "lib/index.js",
"scripts": {
"build": "tsc -p tsconfig.transformer.json",
"debug:ts-node": "TS_NODE_PROJECT=tsconfig.debug.json ts-node debug/debug.spec.ts",
"debug:build": "tsc -p tsconfig.debug.json",
"prepare": "pnpm ts-patch install && is-ci || husky install",
"cm": "cz",
"clean": "rimraf lib",
"lint": "eslint transformer tests",
"semantic-release": "semantic-release",
"test:watch": "jest --watch",
"test": "jest --coverage",
"typecheck": "tsc --noEmit"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/kainstar/types2schema.git"
},
"license": "MIT",
"author": {
"name": "Kainstar",
"email": "[email protected]",
"url": "https://github.com/kainstar"
},
"engines": {
"node": ">=12.0"
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@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/jest": "^27.4.1",
"@types/node": "^16.11.27",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"ajv": "^7.0.3",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"is-ci": "^3.0.1",
"jest": "^27.5.1",
"lint-staged": "^12.3.8",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.2",
"ts-expose-internals": "4.1.3",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"ts-patch": "^1.4.4",
"typescript": "4.4.4"
},
"dependencies": {
"@types/json-schema": "^7.0.7",
"read-pkg-up": "^7.0.1"
},
"peerDependencies": {
"typescript": "^4.0.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"publishConfig": {
"access": "public"
}
}