forked from kriszyp/json-schema
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 795 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 795 Bytes
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
{
"name": "@brickhouse-tech/json-schema-lts",
"version": "0.4.5",
"author": "Kris Zyp",
"description": "JSON Schema validation and specifications",
"maintainers": [
{
"name": "Brickhouse Tech",
"email": "zbricktarz@gmail.com"
}
],
"keywords": [
"json",
"schema"
],
"files": [
"lib"
],
"license": "(AFL-2.1 OR BSD-3-Clause)",
"repository": {
"type": "git",
"url": "https://github.com/brickhouse-tech/json-schema.git"
},
"directories": {
"lib": "./lib"
},
"main": "./lib/validate.js",
"devDependencies": {
"vows": "*",
"@eslint/js": "^9.0.0",
"eslint": "^9.0.0"
},
"overrides": {
"minimatch": ">=10.2.1"
},
"scripts": {
"test": "vows --spec test/*.js",
"lint": "eslint lib/ test/"
}
}