@lionweb/json-utils 0.6.13-beta.5 → 0.7.0-beta.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/CHANGELOG.md CHANGED
@@ -1,4 +1,6 @@
1
1
  # Changelog
2
2
 
3
- ## 0.6.13
3
+ ## 0.7.0
4
+
5
+ Initial creation and publication of this package, as an extraction from `@lionweb/validation`.
4
6
 
package/README.md CHANGED
@@ -12,9 +12,7 @@ An NPM package that can be added to a Node.js/NPM codebase as follows:
12
12
  ```shell
13
13
  $ npm add @lionweb/json-utils
14
14
  ```
15
- It contains:
16
-
17
- * Utilities ...
15
+ It contains utilities around the JSON serialization format, also i.c.w. LionCore M3.
18
16
 
19
17
 
20
18
  ## Development
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lionweb/json-utils",
3
- "version": "0.6.13-beta.5",
3
+ "version": "0.7.0-beta.0",
4
4
  "description": "Utilities for LionWeb JSON",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -15,7 +15,7 @@
15
15
  "url": "https://github.com/LionWeb-io/lionweb-typescript/issues"
16
16
  },
17
17
  "scripts": {
18
- "clean": "rm -rf dist/ lionweb-json-utils-*.tgz",
18
+ "clean": "rm -rf dist/ node_modules/ lionweb-json-utils-*.tgz",
19
19
  "build": "tsc",
20
20
  "lint": "eslint src",
21
21
  "pre-release-either": "npm run clean && npm install && npm run build",
@@ -25,6 +25,6 @@
25
25
  "release-beta": "npm publish --tag beta"
26
26
  },
27
27
  "dependencies": {
28
- "@lionweb/json": "0.6.13-beta.5"
28
+ "@lionweb/json": "0.7.0-beta.0"
29
29
  }
30
30
  }