Skip to content

Commit 2c55d19

Browse files
committed
1.0.1 - js fix dependencies
1 parent a13139e commit 2c55d19

File tree

3 files changed

+34
-51
lines changed

3 files changed

+34
-51
lines changed

javascript/json-transform/README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
![](https://img.shields.io/npm/v/@nlighten/json-transform.svg)
44

5-
[JSON transformers](https://nlighten-oss.github.io/json-transform/) JavaScript implementation
5+
[JSON transformers](https://nlighten-oss.github.io/json-transform/) JavaScript implementation (~20kB)
66

77
# Installation
88

@@ -21,5 +21,11 @@
2121
})();
2222
```
2323

24+
# Peer dependencies
25+
Notice the following peer dependencies that are required by some of the functions:
26+
- json-pointer
27+
- xml2js
28+
- yamljs
29+
2430
# License
2531
[MIT](./LICENSE)

javascript/json-transform/package-lock.json

Lines changed: 18 additions & 41 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

javascript/json-transform/package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@nlighten/json-transform",
33
"description": "JSON transformers JavaScript implementation",
4-
"version": "1.0.0",
4+
"version": "1.0.1",
55
"main": "dist/json-transform.js",
66
"umd:main": "dist/json-transform.umd.js",
77
"module": "dist/json-transform.module.js",
@@ -44,19 +44,20 @@
4444
"url": "https://github.com/nlighten-oss/json-transform/issues"
4545
},
4646
"homepage": "https://github.com/nlighten-oss/json-transform#readme",
47-
"peerDependencies": {
47+
"dependencies": {
4848
"@date-fns/tz": "^1.2.0",
4949
"@nlighten/json-schema-utils": "^1.0.2",
5050
"@wortise/sequency": "^0.20.0",
5151
"bignumber.js": "^9.1.2",
5252
"date-fns": "^4.1.0",
5353
"fast-json-stable-stringify": "^2.1.0",
54-
"fast-json-patch": "^3.1.1",
55-
"formatfusionjs": "^1.1.10",
56-
"json-pointer": "^0.6.2",
5754
"jsonpath": "^1.1.1",
5855
"lossless-json": "^4.0.2",
59-
"uuid": "^10.0.0",
56+
"uuid": "^10.0.0"
57+
},
58+
"peerDependencies": {
59+
"fast-json-patch": "^3.1.1",
60+
"json-pointer": "^0.6.2",
6061
"xml2js": "^0.6.2",
6162
"yamljs": "^0.3.0"
6263
},
@@ -72,16 +73,15 @@
7273
"@wortise/sequency": "^0.20.0",
7374
"bignumber.js": "^9.1.2",
7475
"date-fns": "^4.1.0",
75-
"fast-json-stable-stringify": "^2.1.0",
7676
"fast-json-patch": "^3.1.1",
77-
"formatfusionjs": "^1.1.10",
77+
"fast-json-stable-stringify": "^2.1.0",
7878
"json-pointer": "^0.6.2",
7979
"jsonpath": "^1.1.1",
8080
"lossless-json": "^4.0.2",
8181
"microbundle": "^0.15.1",
8282
"nodemon": "^3.1.7",
83-
"ts-node": "^10.9.2",
8483
"prettier": "3.1.1",
84+
"ts-node": "^10.9.2",
8585
"typescript": "^5.3.3",
8686
"uuid": "^10.0.0",
8787
"vitest": "1.2.2",

0 commit comments

Comments
 (0)