-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
79 lines (79 loc) · 2.27 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
{
"name": "@hyperjump/json-schema",
"version": "1.10.1",
"description": "A JSON Schema validator with support for custom keywords, vocabularies, and dialects",
"type": "module",
"main": "./stable/index.js",
"exports": {
".": "./stable/index.js",
"./draft-04": "./draft-04/index.js",
"./draft-06": "./draft-06/index.js",
"./draft-07": "./draft-07/index.js",
"./draft-2019-09": "./draft-2019-09/index.js",
"./draft-2020-12": "./draft-2020-12/index.js",
"./openapi-3-0": "./openapi-3-0/index.js",
"./openapi-3-1": "./openapi-3-1/index.js",
"./experimental": "./lib/experimental.js",
"./instance/experimental": "./lib/instance.js",
"./annotations/experimental": "./annotations/index.js",
"./annotated-instance/experimental": "./annotations/annotated-instance.js",
"./bundle": "./bundle/index.js"
},
"scripts": {
"clean": "xargs -a .gitignore rm -rf",
"lint": "eslint lib stable draft-* openapi-* bundle annotations",
"test": "vitest --watch=false",
"check-types": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hyperjump-io/json-schema.git"
},
"keywords": [
"JSON Schema",
"json-schema",
"jsonschema",
"JSON",
"Schema",
"2020-12",
"2019-09",
"draft-07",
"draft-06",
"draft-04",
"vocabulary",
"vocabularies"
],
"author": "Jason Desrosiers <[email protected]>",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/jdesrosiers"
},
"devDependencies": {
"@stylistic/eslint-plugin": "*",
"@types/content-type": "*",
"@types/node": "*",
"@types/uuid": "*",
"@vitest/coverage-v8": "*",
"eslint-import-resolver-typescript": "*",
"eslint-plugin-import": "*",
"json-schema-test-suite": "github:json-schema-org/JSON-Schema-Test-Suite",
"typescript": "*",
"typescript-eslint": "*",
"undici": "*",
"vitest": "*",
"yaml": "*"
},
"dependencies": {
"@hyperjump/json-pointer": "^1.1.0",
"@hyperjump/pact": "^1.2.0",
"@hyperjump/uri": "^1.2.0",
"content-type": "^1.0.4",
"json-stringify-deterministic": "^1.0.12",
"just-curry-it": "^5.3.0",
"uuid": "^9.0.0"
},
"peerDependencies": {
"@hyperjump/browser": "^1.1.0"
}
}