forked from estheban/node-json2xml
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
4 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
{ | ||
"name": "json2xml", | ||
"description": "Simple JavaScript Object to XML string converter.", | ||
"version": "0.1.1", | ||
"homepage": "https://github.com/alanclarke/node-json2xml", | ||
"version": "0.1.2", | ||
"homepage": "https://github.com/estheban/node-json2xml", | ||
"author": { | ||
"name": "Etienne Lachance", | ||
"email": "[email protected]" | ||
|
@@ -43,9 +43,6 @@ | |
}, | ||
"keywords": [], | ||
"readme": "node-json2xml\n===========\n\nDescription\n-----------\n\nSimple JavaScript Object to XML string converter.\n\nInstallation\n------------\n\nSimplest way to install `json2xml` is to use [npm](http://npmjs.org), just `npm\ninstall json2xml` which will download json2xml and all dependencies.\n\nSimple usage\n-----------\n \n var json2xml = require('json2xml');\n json2xml({a:1});\n //<a>1</a>\n\t \n\nOptions\n-----------\n\n\tadd header:\n\n\tjson2xml({a:1}, { header:true });\n\t//<?xml version=\"1.0\" encoding=\"UTF-8\"?><a>1</a>\n\n\tadd node attributes:\n\n\tjson2xml({a:1, attr:{b:2,c:3 }}, { attributes_key:'attr' });\t\n\t// <a b=\"2\" c=\"3\" >1</a>", | ||
"_id": "[email protected]", | ||
"dist": { | ||
"shasum": "03d51836b3b3e9a53980132e3a3d07c50bb7d9ec" | ||
}, | ||
"_from": "git://github.com/alanclarke/node-json2xml.git" | ||
"_id": "[email protected]", | ||
"_from": "git://github.com/estheban/node-json2xml.git" | ||
} |