-
-
Notifications
You must be signed in to change notification settings - Fork 250
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.37 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 2.37 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@apidevtools/json-schema-ref-parser",
"version": "0.0.0-dev",
"description": "Parse, Resolve, and Dereference JSON Schema $ref pointers",
"type": "module",
"types": "dist/lib/index.d.ts",
"module": "dist/lib/index.js",
"main": "dist/lib/index.js",
"scripts": {
"prepublishOnly": "pnpm build",
"lint": "oxlint lib",
"build": "rimraf dist && tsc",
"typecheck": "tsc --noEmit && tsc --noEmit -p test/types/tsconfig.json",
"format": "oxfmt \"**/*.{js,jsx,ts,tsx,har,json,css,md}\"",
"test": "vitest --coverage",
"test:specific": "vitest invalid",
"test:node": "pnpm test",
"test:browser": "node ./test/fixtures/run-browser-tests.mjs",
"test:update": "vitest -u",
"test:watch": "vitest -w"
},
"keywords": [
"json",
"schema",
"jsonschema",
"json-schema",
"json-pointer",
"$ref",
"dereference",
"resolve"
],
"author": {
"name": "JonLuca DeCaro",
"url": "https://jonlu.ca",
"email": "apis@jonlu.ca"
},
"contributors": [
{
"name": "Boris Cherny",
"email": "boris@performancejs.com"
},
{
"name": "Phil Sturgeon",
"email": "phil@apisyouwonthate.com"
},
{
"name": "Jakub Rożek",
"email": "jakub@stoplight.io"
},
{
"name": "James Messinger",
"url": "https://jamesmessinger.com"
}
],
"homepage": "https://apidevtools.com/json-schema-ref-parser/",
"repository": {
"type": "git",
"url": "https://github.com/APIDevTools/json-schema-ref-parser.git"
},
"license": "MIT",
"browser": {
"fs": false
},
"engines": {
"node": ">=22.19.0"
},
"files": [
"lib",
"dist"
],
"peerDependencies": {
"@types/json-schema": "^7.0.15"
},
"dependencies": {
"js-yaml": "^5.2.3",
"undici": "^8.10.0"
},
"devDependencies": {
"@types/json-schema": "^7.0.15",
"@types/node": "^26.2.0",
"@vitest/coverage-v8": "^4.1.10",
"cross-env": "^10.1.0",
"jsdom": "^30.0.1",
"oxfmt": "^0.63.0",
"oxlint": "^1.78.0",
"rimraf": "^6.1.3",
"typescript": "^7.0.2",
"vitest": "^4.1.10"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github"
]
},
"packageManager": "pnpm@11.21.0"
}