@cntwg/xml-lib-js 0.0.18 → 0.0.19
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 +8 -2
- package/LICENSE +1 -1
- package/package.json +7 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
#### *v0.0.19*
|
|
2
|
+
|
|
3
|
+
Pre-release version.
|
|
4
|
+
|
|
5
|
+
> - updated dependency on `@ygracs/xobj-lib-js` module to v0.0.14rc1.
|
|
6
|
+
|
|
1
7
|
#### *v0.0.18*
|
|
2
8
|
|
|
3
9
|
Pre-release version.
|
|
@@ -24,14 +30,14 @@ Pre-release version.
|
|
|
24
30
|
Pre-release version.
|
|
25
31
|
|
|
26
32
|
> - updated dependency on `@ygracs/bsfoc-lib-js` module to v0.1.2;
|
|
27
|
-
> - updated dependency on `@ygracs/xobj-lib-js` module to v0.0.13
|
|
33
|
+
> - updated dependency on `@ygracs/xobj-lib-js` module to v0.0.13.
|
|
28
34
|
|
|
29
35
|
#### *v0.0.14*
|
|
30
36
|
|
|
31
37
|
Pre-release version.
|
|
32
38
|
|
|
33
39
|
> - updated dependency on `@ygracs/bsfoc-lib-js` module to v0.1.1;
|
|
34
|
-
> - updated dependency on `@ygracs/xobj-lib-js` module to v0.0.12
|
|
40
|
+
> - updated dependency on `@ygracs/xobj-lib-js` module to v0.0.12.
|
|
35
41
|
|
|
36
42
|
#### *v0.0.13*
|
|
37
43
|
|
package/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
The MIT License (MIT)
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2019-
|
|
3
|
+
Copyright (c) 2019-2023 Yuri Grachev
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
6
6
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cntwg/xml-lib-js",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.19",
|
|
4
4
|
"description": "A library for handling an XML-documents",
|
|
5
5
|
"author": "ygracs <cs70th-om@rambler.ru>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -8,11 +8,15 @@
|
|
|
8
8
|
"type": "git",
|
|
9
9
|
"url": "git+https://gitlab.com/cntwg/xml-lib-js.git"
|
|
10
10
|
},
|
|
11
|
+
"keywords": [
|
|
12
|
+
"xml"
|
|
13
|
+
],
|
|
11
14
|
"main": "./index.js",
|
|
12
15
|
"files": [
|
|
13
16
|
"doc/xmldoc-lib.md",
|
|
14
17
|
"lib/xmldoc-lib.js",
|
|
15
|
-
"index.js"
|
|
18
|
+
"index.js",
|
|
19
|
+
"CHANGELOG.md"
|
|
16
20
|
],
|
|
17
21
|
"scripts": {
|
|
18
22
|
"test": "jest",
|
|
@@ -27,7 +31,7 @@
|
|
|
27
31
|
"dependencies": {
|
|
28
32
|
"@ygracs/bsfoc-lib-js": "^0.1.2",
|
|
29
33
|
"@ygracs/xml-js6": "^0.0.3-b",
|
|
30
|
-
"@ygracs/xobj-lib-js": "^0.0.
|
|
34
|
+
"@ygracs/xobj-lib-js": "^0.0.14-rc1"
|
|
31
35
|
},
|
|
32
36
|
"devDependencies": {
|
|
33
37
|
"jest": "^27.5.1"
|