-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.34 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.34 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "xml-mapping",
"version": "1.7.1",
"author": "Nicolas Thouvenin <nthouvenin@gmail.com>",
"contributors": [
{
"name": "Joe Ibershoff",
"url": "https://github.com/zacronos",
"email": "joe@ibershoff.com"
},
{
"name": "Yura Zenevich",
"url": "https://github.com/yzen",
"email": "yura.zenevich@gmail.com"
},
{
"name": "Thorsten Lorenz",
"url": "https://github.com/thlorenz",
"email": "thlorenz@gmx.de"
},
{
"name": "ntgn81",
"url": "https://github.com/ntgn81",
"email": "ntgn81@gmail.com"
},
{
"name": "Rowell Cruz",
"url": "https://github.com/rcruz"
},
{
"name": "JT",
"url": "https://github.com/spikyjt"
}
],
"description": "provide a bidirectionnal mapping between XML and JS data Structure (aka JSON)",
"keywords": [
"xml",
"json",
"json2xml",
"xml2json"
],
"homepage": "http://github.com/touv/node-xml-mapping",
"scripts": {
"test": "nodeunit test/"
},
"main": "./xml-mapping.js",
"repository": {
"type": "git",
"url": "https://github.com/touv/node-xml-mapping.git"
},
"dependencies": {
"xml-writer": ">=1.0.4",
"sax": "=0.4.2"
},
"devDependencies": {
"nodeunit": ">=0.7.3"
},
"license": "MIT",
"engines": {
"node": ">=0.2.0"
}
}