-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 1.93 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
{
"name": "json-schema-object-generator",
"version": "0.5.0",
"description": "Generates plain objects based on JSON schema definition",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/seesharpsoft/json-schema-object-generator.git"
},
"keywords": [
"js",
"ts",
"json",
"schema",
"generator"
],
"author": {
"name": "Martin Sommer",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/seesharpsoft/json-schema-object-generator/issues"
},
"homepage": "https://github.com/seesharpsoft/json-schema-object-generator",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@types/json-schema": "^7.0.7",
"regex-to-strings": "^2.0.1"
},
"devDependencies": {
"@babel/core": "^7.21.5",
"@babel/preset-env": "^7.21.5",
"@babel/preset-typescript": "^7.21.5",
"@types/node": "^18.16.3",
"@types/jest": "^29.5.1",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"typescript": "^5.0.4",
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"jest": "^29.5.0",
"jest-junit": "^16.0.0",
"prettier": "^2.8.8",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"ts-json-schema-generator": "^1.2.0"
},
"scripts": {
"build": "tsc",
"build:all": "yarn install && yarn build",
"test": "jest test/",
"test:coverage": "jest test/ --collectCoverage=true",
"test:node": "mocha",
"test:generate-schema": "\"./node_modules/.bin/ts-json-schema-generator\" --path \"test/extra/model/model.ts\" --type \"Model\" --out \"test/extra/model/schema.json\" --additional-properties",
"lint": "eslint {src,test}/**/*.*",
"format": "eslint {src,test}/**/*.ts --fix"
}
}