-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.45 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
{
"name": "@json-schema-tools/referencer",
"version": "0.0.0-development",
"main": "build/index.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "npm run build:code && typedoc --out docs && touch docs/.nojekyll",
"build:code": "tsc",
"lint": "eslint . --ext .ts",
"test": "npm run test:unit",
"test:unit": "jest --coverage"
},
"author": "BelfordZ <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/json-schema-tools/referencer/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/json-schema-tools/referencer.git"
},
"files": [
"build",
"!build/**/*.test.*"
],
"devDependencies": {
"@json-schema-tools/dereferencer": "^1.6.3",
"@json-schema-tools/meta-schema": "^1.7.5",
"@json-schema-tools/titleizer": "^1.0.9",
"@json-schema-tools/transpiler": "^1.10.4",
"@types/jest": "^29.2.0",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"eslint": "^8.26.0",
"jest": "^29.2.2",
"ts-jest": "^29.0.3",
"typedoc": "^0.25.13",
"typescript": "^5.4.4"
},
"dependencies": {
"@json-schema-tools/traverse": "^1.10.4"
},
"homepage": "https://github.com/json-schema-tools/referencer#readme",
"description": "Get a copy of a JSON Schema where all subschemas are turned into `$ref`s with corresponding definitions section."
}