forked from hyperjump-io/json-schema-errors
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.38 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.38 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
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "@hyperjump/json-schema-errors",
"version": "0.1.0",
"description": "Get human friendly error messages from any of the standard JSON Schema output formats",
"type": "module",
"main": "./src/index.js",
"exports": {
".": "./src/index.js"
},
"scripts": {
"lint": "eslint src",
"test": "vitest --watch=false",
"type-check": "tsc --noEmit",
"docs": "typedoc --excludeExternals"
},
"repository": "github:hyperjump-io/json-schema-errors",
"keywords": [
"Hyperjump",
"JSON Schema",
"errors",
"output format",
"basic",
"detailed",
"verbose",
"localization",
"l18n"
],
"contributors": [
"Jason Desrosiers <jdesrosi@gmail.com>",
"Arpit Kuriyal <arpitkuriyal2002@gmail.com>"
],
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/hyperump-io"
},
"devDependencies": {
"@stylistic/eslint-plugin": "*",
"@types/node": "*",
"@vitest/coverage-v8": "^4.0.16",
"eslint-import-resolver-typescript": "*",
"eslint-plugin-import": "*",
"typedoc": "*",
"typescript-eslint": "*",
"vitest": "*"
},
"dependencies": {
"@fluent/bundle": "^0.19.1",
"@hyperjump/json-pointer": "^1.1.1",
"@hyperjump/json-schema": "^1.17.2",
"@hyperjump/pact": "^1.4.0",
"@hyperjump/uri": "^1.3.2",
"json-stringify-deterministic": "^1.0.12"
}
}