circular-reference 0.1.0 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/package.json +5 -2
package/README.md
CHANGED
|
@@ -11,7 +11,7 @@ This library provides two methods that handle circular references by injecting o
|
|
|
11
11
|
|
|
12
12
|
## Install
|
|
13
13
|
|
|
14
|
-
`npm
|
|
14
|
+
`npm i circular-reference` or use your preferred package manager.
|
|
15
15
|
|
|
16
16
|
## How to use
|
|
17
17
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "circular-reference",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "Tiny util to stringify and parse circular references in objects.",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -17,7 +17,10 @@
|
|
|
17
17
|
},
|
|
18
18
|
"keywords": [
|
|
19
19
|
"circular",
|
|
20
|
-
"reference"
|
|
20
|
+
"reference",
|
|
21
|
+
"JSON",
|
|
22
|
+
"stringify",
|
|
23
|
+
"parse"
|
|
21
24
|
],
|
|
22
25
|
"author": "derRaab",
|
|
23
26
|
"license": "MIT",
|