forked from MailOnline/json-schema-test
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.38 KB
/
package.json
File metadata and controls
54 lines (54 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
{
"name": "@theflashlabs/json-schema-test",
"version": "0.0.2",
"description": "Testing JSON schemas against sample data",
"main": "dist/index.js",
"files": [
"dist/"
],
"type": "module",
"scripts": {
"clean-dist": "rm -rf ./dist/",
"build": "pnpm clean-dist && tsc",
"test-pass": "vitest --run pass",
"test-fail": "vitest --run fail | grep '2 failed'",
"test-debug": "vitest fail --inspect-brk --no-file-parallelism",
"test": "pnpm test-pass && pnpm test-fail",
"coverage": "vitest --run --coverage || true"
},
"repository": {
"type": "git",
"url": "git+https://github.com/theflashlabs/json-schema-test.git"
},
"keywords": [
"JSON",
"schema",
"test"
],
"author": {
"name": "Balakrishna Avulapati",
"email": "ba@bavulapati.com",
"url": "https://bavulapati.com"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/bavulapati"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/theflashlabs/json-schema-test/issues"
},
"homepage": "https://github.com/theflashlabs/json-schema-test",
"dependencies": {
"glob": "^11.0.3"
},
"devDependencies": {
"@theflashlabs/ajv-plus": "^0.0.4",
"@types/node": "^24.5.2",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "3.2.4",
"pre-commit": "^1.0.10",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
}
}