-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.19 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.19 KB
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
{
"name": "@json-schema-tools/traverse",
"version": "0.0.0-development",
"description": "This package exports a method that will traverse a JSON-Schema, calling a mutation function for each sub schema found. It is useful for building tools to work with JSON Schemas.",
"main": "build/index.js",
"bugs": {
"url": "https://github.com/json-schema-tools/traverse/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/json-schema-tools/traverse.git"
},
"homepage": "json-schema.tools",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"build:docs": "typedoc",
"test": "jest --coverage",
"lint": "eslint . --ext .ts --fix"
},
"author": "Zachary Belford<belfordz66@gmail.com>",
"license": "Apache-2.0",
"files": [
"build",
"!build/**/*.test.*"
],
"devDependencies": {
"@json-schema-tools/meta-schema": "^1.7.5",
"@types/jest": "^29.1.1",
"@types/node": "^22.7.9",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"eslint": "^8.24.0",
"jest": "^29.1.2",
"ts-jest": "^29.0.3",
"typedoc": "^0.26.10",
"typescript": "^5.4.4"
}
}