-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpackage.json
49 lines (49 loc) · 947 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "jsontoxml",
"version": "1.0.0",
"description": "This is a library designed to render js objects as xml. Its not made to parse or otherwise edit existing xml/html structures.",
"homepage": "http://github.com/ken-franken/node-jsontoxml",
"main": "./jsontoxml.js",
"devDependencies": {
"tape": "~0.2.2"
},
"scripts": {
"test": "node ./test.js"
},
"testling": {
"files": "./test.js",
"browsers": {
"ie": [
8,
9
],
"firefox": [
13
],
"chrome": [
20
],
"safari": [
5.1
],
"opera": [
12
]
}
},
"people": {
"author": {
"name": "Ryan Day",
"email": "[email protected]",
"url": "http://ryanday.org"
}
},
"repository": {
"type": "git",
"url": "git://github.com/soldair/node-jsontoxml.git"
},
"license": "MIT",
"engines": {
"node": ">=0.2.0"
}
}