-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.35 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
93
94
{
"name": "@tsofist/schema-forge",
"version": "1.31.0",
"description": "Generate JSON schema from TypeScript types",
"author": "Andrew Berdnikov <tsofistgudmen@gmail.com>",
"license": "MIT",
"main": "lib/types",
"types": "lib/types",
"type": "commonjs",
"scripts": {
"build": "rimraf lib/** && tsc -p tsconfig.build.json",
"format": "npm run lint -- --fix",
"lint": "eslint . --cache --cache-location .lint-cache/",
"pkg:publish": "semantic-release --no-ci",
"pkg:publish-test": "semantic-release --dry-run",
"pkg:purge": "rimraf lib .coverage .lint-cache .jest-cache node_modules",
"prepare": "husky && (cp node_modules/@tsofist/web-buddy/.editorconfig \"$INIT_CWD\" || true)",
"test": "jest",
"test:cov": "jest --coverage",
"test:watch": "jest --watch"
},
"dependencies": {
"@faker-js/faker": "^9.2.0",
"@tsofist/stem": "^1.40.0",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"json-schema-faker": "^0.5.7",
"ts-json-schema-generator": "^2.3.0",
"tslib": "^2.8.1"
},
"devDependencies": {
"@tsofist/web-buddy": "^1.14.0",
"@types/jest": "^29.5.14",
"@types/node": "^20.17.6",
"@types/supertest": "^6.0.2",
"jest": "^29.7.0",
"rimraf": "^6.0.1",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"typescript": "~5.6.3"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"release": {
"extends": [
"@tsofist/web-buddy/.releaserc-github.json"
]
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"roots": [
"src",
"test-sources"
],
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"cacheDirectory": ".jest-cache",
"coverageDirectory": ".coverage",
"testEnvironment": "node",
"moduleNameMapper": {}
},
"files": [
"lib",
"LICENSE"
],
"prettier": "./node_modules/@tsofist/web-buddy/.prettierrc.js",
"eslintConfig": {
"root": true,
"extends": [
"./node_modules/@tsofist/web-buddy/.eslintrc.yaml",
"./node_modules/@tsofist/web-buddy/eslint/stricter.extends.yaml"
]
},
"eslintIgnore": [
"lib",
"*.tmp.json",
".coverage",
".*-cache",
".idea",
"node_modules"
],
"keywords": []
}