-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.08 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.08 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
42
43
{
"name": "@json-schema-tools/validator",
"version": "0.0.0-development",
"description": "JSON Schema validator. Simple, fast, handles circular references.",
"main": "build/index.js",
"bugs": {
"url": "https://github.com/json-schema-tools/validator/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/json-schema-tools/validator.git"
},
"homepage": "json-schema.tools",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"build:docs": "typedoc",
"test": "jest --coverage"
},
"author": "Zachary Belford<belfordz66@gmail.com>",
"license": "Apache-2.0",
"files": [
"build",
"!build/**/*.test.*"
],
"devDependencies": {
"@json-schema-tools/meta-schema": "^1.7.0",
"@types/jest": "^29.1.1",
"@types/jsonpath": "^0.2.0",
"@types/lodash.merge": "^4.6.7",
"@types/node": "^22.5.0",
"jest": "^29.1.2",
"ts-jest": "^29.0.3",
"typedoc": "^0.25.13",
"typescript": "^5.4.5"
},
"dependencies": {
"@json-schema-tools/traverse": "^1.10.0",
"jsonpath": "^1.1.1"
}
}