-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.35 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.35 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
56
57
58
59
60
{
"name": "@hyperjump/json-schema-formats",
"version": "1.0.1",
"description": "A collection of validation functions for the JSON Schema `format` keyword.",
"keywords": [
"JSON Schema",
"format",
"rfc3339",
"date",
"date-time",
"duration",
"email",
"hostname",
"idn-hostname",
"idn-email",
"ipv4",
"ipv6",
"iri",
"iri-reference",
"json-pointer",
"regex",
"relative-json-pointer",
"time",
"uri",
"uri-reference",
"uri-template",
"uuid"
],
"author": "Jason Desrosiers <jdesrosi@gmail.com>",
"license": "MIT",
"repository": "github:hyperjump-io/json-schema-formats",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/hyperjump-io"
},
"type": "module",
"exports": {
".": "./src/index.js"
},
"scripts": {
"lint": "eslint src",
"test": "vitest run",
"type-check": "tsc --noEmit",
"docs": "typedoc --excludeExternals"
},
"devDependencies": {
"@stylistic/eslint-plugin": "*",
"@types/node": "*",
"eslint-import-resolver-typescript": "*",
"eslint-plugin-import": "*",
"json-schema-test-suite": "github:json-schema-org/json-schema-test-suite",
"typedoc": "*",
"typescript-eslint": "*",
"vitest": "*"
},
"dependencies": {
"@hyperjump/uri": "^1.3.2",
"idn-hostname": "^15.1.2"
}
}