Skip to content

Commit 3de8b4a

Browse files
The unscoped NPM package is now just a wrapper around the scoped @APIDevTools package
1 parent ef4453f commit 3de8b4a

File tree

4 files changed

+58
-0
lines changed

4 files changed

+58
-0
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,17 @@ JSON Schema $Ref Parser adheres to [Semantic Versioning](http://semver.org/).
55

66

77

8+
[v8.0.0](https://github.com/APIDevTools/json-schema-ref-parser/tree/v8.0.0) (2020-03-13)
9+
----------------------------------------------------------------------------------------------------
10+
11+
- Moved JSON Schema $Ref Parser to the @APIDevTools scope](https://www.npmjs.com/org/apidevtools) on NPM
12+
13+
- The "json-schema-ref-parser" NPM package is now just a wrapper around the scoped "@apidevtools/json-schema-ref-parser" package
14+
15+
[Full Changelog](https://github.com/APIDevTools/json-schema-ref-parser/compare/v7.1.4...v8.0.0)
16+
17+
18+
819
[v7.1.0](https://github.com/APIDevTools/json-schema-ref-parser/tree/v7.1.0) (2019-06-21)
920
----------------------------------------------------------------------------------------------------
1021

dist/index.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
import * as $RefParser from "@apidevtools/json-schema-ref-parser";
2+
export = $RefParser;

dist/index.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
"use strict";
2+
module.exports = require("@apidevtools/json-schema-ref-parser");

dist/package.json

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
{
2+
"name": "json-schema-ref-parser",
3+
"version": "X.X.X",
4+
"description": "Parse, Resolve, and Dereference JSON Schema $ref pointers",
5+
"keywords": [
6+
"json",
7+
"schema",
8+
"jsonschema",
9+
"json-schema",
10+
"json-pointer",
11+
"$ref",
12+
"dereference",
13+
"resolve"
14+
],
15+
"author": {
16+
"name": "James Messinger",
17+
"url": "https://jamesmessinger.com"
18+
},
19+
"contributors": [
20+
{
21+
"name": "Boris Cherny",
22+
"email": "[email protected]"
23+
}
24+
],
25+
"homepage": "https://apitools.dev/json-schema-ref-parser/",
26+
"repository": {
27+
"type": "git",
28+
"url": "https://github.com/APIDevTools/json-schema-ref-parser.git"
29+
},
30+
"license": "MIT",
31+
"main": "index.js",
32+
"typings": "index.d.ts",
33+
"files": [
34+
"index.js",
35+
"index.d.ts"
36+
],
37+
"engines": {
38+
"node": ">=10"
39+
},
40+
"dependencies": {
41+
"@apidevtools/json-schema-ref-parser": "X.X.X"
42+
}
43+
}

0 commit comments

Comments
 (0)