-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
48 lines (48 loc) · 1.69 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "json2xml",
"description": "Simple JavaScript Object to XML string converter.",
"version": "0.1.3",
"homepage": "https://github.com/estheban/node-json2xml",
"author": {
"name": "Etienne Lachance",
"email": "[email protected]"
},
"contributors": [
{
"name": "Alan Clarke",
"email": "[email protected]",
"url": "alz.so"
},
{
"name": "Ivo Georgiev",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "git://github.com/estheban/node-json2xml.git"
},
"bugs": {
"url": "https://github.com/estheban/node-json2xml/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/estheban/node-json2xml/blob/master/LICENSE-MIT"
}
],
"main": "lib/json2xml",
"engines": {
"node": ">= 0.6.0"
},
"scripts": {
"test": "grunt test"
},
"devDependencies": {
"grunt": "~0.3.11"
},
"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]",
"_from": "git://github.com/estheban/node-json2xml.git"
}