p3x-xml2json 2023.10.117 → 2023.10.124
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/LICENSE +1 -1
- package/README.md +3 -8
- package/package.json +4 -3
- package/.editorconfig +0 -21
- package/.travis.yml +0 -20
- package/xml2json.iml +0 -9
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
|
|
14
|
-
# Converts xml to json and vice-versa, using node-expat v2023.10.
|
|
14
|
+
# Converts xml to json and vice-versa, using node-expat v2023.10.124
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
### Built on NodeJs version
|
|
26
26
|
|
|
27
27
|
```txt
|
|
28
|
-
|
|
28
|
+
v20.5.0
|
|
29
29
|
```
|
|
30
30
|
|
|
31
31
|
|
|
@@ -158,16 +158,11 @@ All my domains ([patrikx3.com](https://patrikx3.com) and [corifeus.com](https://
|
|
|
158
158
|
|
|
159
159
|
---
|
|
160
160
|
|
|
161
|
-
[**P3X-XML2JSON**](https://corifeus.com/xml2json) Build v2023.10.
|
|
161
|
+
[**P3X-XML2JSON**](https://corifeus.com/xml2json) Build v2023.10.124
|
|
162
162
|
|
|
163
163
|
[](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=QZVM4V6HVZJW6) [](https://www.patrikx3.com/en/front/contact) [](https://www.facebook.com/corifeus.software)
|
|
164
164
|
|
|
165
165
|
|
|
166
|
-
## P3X Sponsor
|
|
167
|
-
|
|
168
|
-
[IntelliJ - The most intelligent Java IDE](https://www.jetbrains.com/?from=patrikx3)
|
|
169
|
-
|
|
170
|
-
[](https://www.jetbrains.com/?from=patrikx3)
|
|
171
166
|
|
|
172
167
|
|
|
173
168
|
|
package/package.json
CHANGED
|
@@ -5,12 +5,12 @@
|
|
|
5
5
|
"publish": true,
|
|
6
6
|
"type": "p3x",
|
|
7
7
|
"code": "Done",
|
|
8
|
-
"nodejs": "
|
|
8
|
+
"nodejs": "v20.5.0",
|
|
9
9
|
"opencollective": false,
|
|
10
10
|
"reponame": "xml2json",
|
|
11
11
|
"build": true
|
|
12
12
|
},
|
|
13
|
-
"version": "2023.10.
|
|
13
|
+
"version": "2023.10.124",
|
|
14
14
|
"description": "Converts xml to json and vice-versa, using node-expat",
|
|
15
15
|
"repository": {
|
|
16
16
|
"type": "git",
|
|
@@ -24,6 +24,7 @@
|
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"@hapi/hoek": "^11.0.2",
|
|
26
26
|
"joi": "^17.9.2",
|
|
27
|
+
"nan": "^2.17.0",
|
|
27
28
|
"node-expat": "^2.4.0"
|
|
28
29
|
},
|
|
29
30
|
"bin": {
|
|
@@ -32,7 +33,7 @@
|
|
|
32
33
|
"devDependencies": {
|
|
33
34
|
"@hapi/code": "^9.0.3",
|
|
34
35
|
"@hapi/lab": "^25.1.3",
|
|
35
|
-
"corifeus-builder": "^2023.10.
|
|
36
|
+
"corifeus-builder": "^2023.10.132"
|
|
36
37
|
},
|
|
37
38
|
"engines": {
|
|
38
39
|
"node": ">=12.13.0"
|
package/.editorconfig
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
# EditorConfig helps developers define and maintain consistent
|
|
2
|
-
# coding styles between different editors and IDEs
|
|
3
|
-
# editorconfig.org
|
|
4
|
-
|
|
5
|
-
root = true
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
[*]
|
|
9
|
-
|
|
10
|
-
# Change these settings to your own preference
|
|
11
|
-
indent_style = space
|
|
12
|
-
indent_size = 4
|
|
13
|
-
|
|
14
|
-
# We recommend you to keep these unchanged
|
|
15
|
-
end_of_line = lf
|
|
16
|
-
charset = utf-8
|
|
17
|
-
trim_trailing_whitespace = false
|
|
18
|
-
insert_final_newline = true
|
|
19
|
-
|
|
20
|
-
[*.md]
|
|
21
|
-
trim_trailing_whitespace = false
|
package/.travis.yml
DELETED
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
sudo: required
|
|
2
|
-
language: node_js
|
|
3
|
-
cache:
|
|
4
|
-
npm: false
|
|
5
|
-
node_js:
|
|
6
|
-
- lts/*
|
|
7
|
-
before_script:
|
|
8
|
-
- npm install -g grunt-cli npm
|
|
9
|
-
env:
|
|
10
|
-
matrix:
|
|
11
|
-
- CXX="g++-4.8"
|
|
12
|
-
global:
|
|
13
|
-
secure: EW8wQ4ZTe859edhfgDplSKP/VLBLOkuU4uDiIY9sP4Wg/b+T0B4py9DPOZQUXhx6iBg87gZAHZMPGiJCj+4fWsQYlImAfgSZ6kq9O7a/dsIp8zWQD4IFc8TVDYW262AesUPjDMH+U7ynzH11PkCHVgjT8dioWCtDYf7sjn7Iyo//4xC4PF4OhHmsjsE53OBdnNknqT3z5LIc5s3UypGdLM6QSgz1a7XEgjmcOsx8+Z6ZWeIwRBHleJ/th95B5rTbb2AC5U4Q8FxX15EsLlc8NRn02wi7EVg45gEdl5KmdTWI3ZEdkvEJVAyu5Nm72ouGNiwSeDpcKc7ciRDCw6kGFLvdw6BbjPtlzCTFXX2P4JQc/RY+asA/95CjsIxjVQHUZhS8yWDUwyd46h3mI74OmXY/p48ueDPvK3ZBI2GC1WOg3A7L1grfcWC8nQjaCd8Ry+7RVXb4hI5b9+v27SuS+e9cTfDcyIg37wBPblP08MCVFvTstdwzMtl6CbHe/IpFIBirfg/zVa6nlp7XoRToBA72hVL8HqNGmf4XAt/UKTvaS/feUHJqrRDolXu1xzr9yWzoHC75mPVqfx+R571UB5UNIUZGKNM7z1jELodYWy9xw1EgD6qNwiI2/QNxxkz2xeHRYXRjBtb83eJMI5IrdB6lxB9IvZsXCPa8K94codA=
|
|
14
|
-
addons:
|
|
15
|
-
apt:
|
|
16
|
-
sources:
|
|
17
|
-
- ubuntu-toolchain-r-test
|
|
18
|
-
packages:
|
|
19
|
-
- g++-4.8
|
|
20
|
-
- gcc-4.8
|
package/xml2json.iml
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<module type="WEB_MODULE" version="4">
|
|
3
|
-
<component name="NewModuleRootManager" inherit-compiler-output="true">
|
|
4
|
-
<exclude-output />
|
|
5
|
-
<content url="file://$MODULE_DIR$" />
|
|
6
|
-
<orderEntry type="inheritedJdk" />
|
|
7
|
-
<orderEntry type="sourceFolder" forTests="false" />
|
|
8
|
-
</component>
|
|
9
|
-
</module>
|