-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.19 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.19 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
{
"name": "json-schema-class",
"version": "0.1.3",
"description": "An Abstract Class that uses JSON Schema validation to build an extensible application with strongish type",
"type": "module",
"exports": {
".": {
"types": "./lib/SchemaClass.d.ts",
"import": "./lib/SchemaClass.js"
}
},
"scripts": {
"test": "c8 -r lcov node --test",
"build": "tsc",
"docs": "node scripts/generate-readme.js && typedoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NodeJunkie/node-json-schema-class.git"
},
"keywords": [
"json-schema"
],
"author": "Michael Feher <github@phearzero.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/NodeJunkie/node-json-schema-class/issues"
},
"homepage": "https://github.com/NodeJunkie/node-json-schema-class#readme",
"dependencies": {
"ajv": "^8.17.1",
"merge": "^2.1.1"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"acquit": "^1.3.0",
"c8": "^10.1.2",
"chai": "^5.1.2",
"eslint": "^9.15.0",
"globals": "^15.12.0",
"typedoc": "^0.27.1",
"typedoc-plugin-coverage": "^3.4.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.16.0"
}
}