forked from Inist-CNRS/node-xml-mapping
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 830 Bytes
/
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
{
"name": "xml-mapping",
"version": "1.1.0",
"author": "Nicolas Thouvenin <[email protected]>",
"contributors": [],
"description": "provide a bidirectionnal mapping between XML and JS data Structure (aka JSON)",
"tags": [
"xml",
"json",
"json2xml",
"xml2json"
],
"homepage": "http://github.com/lindory-project/node-xml-mapping",
"scripts": {
"test": "nodeunit test/"
},
"main": "./xml-mapping.js",
"repository": {
"type": "git",
"url": "https://github.com/lindory-project/node-xml-mapping.git"
},
"dependencies": {
"xml-writer": ">=1.0.4",
"sax": ">=0.3.5"
},
"devDependencies": {
"nodeunit": ">=0.7.3"
},
"license": "MIT",
"engines": {
"node": ">=0.2.0"
}
}