-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
92 lines (92 loc) · 2.14 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
83
84
85
86
87
88
89
90
91
92
{
"name": "@hoth/typescript-to-json-schema",
"version": "2.1.2",
"description": "typescript to json-schema transpiler",
"keywords": [
"typescript",
"json-schema"
],
"author": "cxtom <[email protected]>",
"license": "MIT",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/max-team/typescript-to-json-schema.git"
},
"scripts": {
"build": "tsc",
"prepublish": "npm run build",
"test": "jest",
"coverage": "jest --coverage"
},
"dependencies": {
"chalk": "^4.1.1",
"fs-extra": "^8.0.1",
"json-schema-traverse": "^1.0.0",
"lodash": "^4.17.20",
"ts-morph": "^11.0.3",
"typescript": "~3.8.0"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-transform-modules-commonjs": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^7.5.0",
"@types/fs-extra": "^7.0.0",
"@types/jest": "^24.0.13",
"@types/node": "^12.0.12",
"@typescript-eslint/eslint-plugin": "^1.9.0",
"commitizen": "^4.2.1",
"conventional-changelog": "^3.1.3",
"conventional-changelog-cli": "^2.0.12",
"cz-conventional-changelog": "^2.1.0",
"husky": "^1.3.1",
"jest": "^26.4.2",
"jest-config": "^26.4.2",
"ts-jest": "^26.3.0",
"ts-node": "^8.2.0"
},
"jest": {
"verbose": true,
"preset": "ts-jest/presets/js-with-babel",
"testEnvironment": "node",
"testRegex": "(/__tests__/.*\\.(test|spec))\\.(ts|js)$",
"moduleFileExtensions": [
"ts",
"js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/__tests__/"
],
"moduleDirectories": [
"node_modules"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 95,
"lines": 95,
"statements": 95
}
},
"collectCoverageFrom": [
"src/**.ts"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}