Skip to content

Commit 43f7687

Browse files
committed
update package detail, users, and dependencies
1 parent 03900d9 commit 43f7687

File tree

8 files changed

+709
-953
lines changed

8 files changed

+709
-953
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
3.12.16 / 2019-03-23
2+
* Support a new option "stopNodes". (#150)
3+
4+
Accept the list of tags which are not required to be parsed. Instead, all the nested tag and data will be assigned as string.
5+
* Don't show post-install message
16
3.12.12 / 2019-01-11
27
* fix : IE parseInt, parseFloat error
38
3.12.11 / 2018-12-24

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@ var jsonObj = parser.convertToJson(tObj,options);
111111
* **parseTrueNumberOnly**: if true then values like "+123", or "0123" will not be parsed as number.
112112
* **tagValueProcessor** : Process tag value during transformation. Like HTML decoding, word capitalization, etc. Applicable in case of string only.
113113
* **attrValueProcessor** : Process attribute value during transformation. Like HTML decoding, word capitalization, etc. Applicable in case of string only.
114+
* **stopNodes** : an array of tag names which are not required to be parsed. Instead their values are parsed as string.
114115

115116
</details>
116117

@@ -262,8 +263,12 @@ List of applications and projects using Fast XML Parser. (Raise an issue to subm
262263
<a href="http://www.acuantcorp.com/" title="Acuant Inc" > <img src="https://avatars3.githubusercontent.com/u/11580319?s=200&v=4" width="80px" ></a>
263264
<a href="https://www.wazuh.com/" title="wazuh" > <img src="https://avatars2.githubusercontent.com/u/13752566" width="80px" ></a>
264265
<a href="https://orbs.com/" title="ORBS The Hybrid Blockchain" > <img src="https://avatars1.githubusercontent.com/u/33665977" width="80px" ></a>
265-
266-
266+
<a href="https://texlab.netlify.com/" title="latex-lsp" > <img src="https://avatars1.githubusercontent.com/u/48360002" width="80px" ></a>
267+
<a href="https://frontside.io/" title="The Frontside " > <img src="https://avatars1.githubusercontent.com/u/223096" width="80px" ></a>
268+
<a href="https://www.hustunique.com/" title="UniqueStudio" > <img src="https://avatars1.githubusercontent.com/u/4847684" width="80px" ></a>
269+
<a href="http://www.openforis.org/" title="Open Foris" > <img src="https://avatars2.githubusercontent.com/u/1212750" width="80px" ></a>
270+
<a href="#" title="NHS Connect" > <img src="https://avatars3.githubusercontent.com/u/20316669" width="80px" ></a>
271+
<a href="https://tradle.io/" title="Tradle" > <img src="https://avatars2.githubusercontent.com/u/9482126" width="80px" ></a>
267272

268273

269274
## Contributors

lib/parser.js

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

lib/parser.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/parser.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/parser.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

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

package.json

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fast-xml-parser",
3-
"version": "3.12.15",
3+
"version": "3.12.16",
44
"description": "Validate XML or Parse XML to JS/JSON very fast without C/C++ based libraries",
55
"main": "./src/parser.js",
66
"scripts": {
@@ -67,26 +67,27 @@
6767
],
6868
"license": "MIT",
6969
"devDependencies": {
70-
"@babel/core": "^7.2.2",
71-
"@babel/plugin-transform-runtime": "^7.2.0",
72-
"@babel/preset-env": "^7.3.1",
73-
"@babel/register": "^7.0.0",
70+
"@babel/core": "^7.4.0",
71+
"@babel/plugin-transform-runtime": "^7.4.0",
72+
"@babel/preset-env": "^7.4.2",
73+
"@babel/register": "^7.4.0",
7474
"babel-loader": "^8.0.5",
7575
"benchmark": "^2.1.4",
76-
"eslint": "^5.13.0",
76+
"eslint": "^5.15.3",
7777
"he": "^1.2.0",
7878
"http-server": "^0.11.1",
7979
"istanbul": "^0.4.5",
8080
"jasmine": "^3.3.1",
8181
"portfinder": "^1.0.20",
8282
"prettier": "^1.15.3",
83-
"webpack": "^4.29.3",
84-
"webpack-cli": "^3.2.3",
83+
"webpack": "^4.29.6",
84+
"webpack-cli": "^3.3.0",
8585
"xml2js": "^0.4.19",
8686
"zombie": "^5.0.8"
8787
},
8888
"dependencies": {
8989
"configstore": "^4.0.0",
90+
"lodash": "^4.17.11",
9091
"nimnjs": "^1.3.2"
9192
},
9293
"typings": "src/parser.d.ts"

0 commit comments

Comments
 (0)