File tree Expand file tree Collapse file tree 2 files changed +38
-25
lines changed Expand file tree Collapse file tree 2 files changed +38
-25
lines changed Original file line number Diff line number Diff line change 1
1
{
2
- "name" :" jsontoxml" ,
3
- "version" :" 0.0.6" ,
4
- "description" :" This is a library designed to render js objects as xml. Its not made to parse or otherwise edit existing xml/html structures." ,
5
- "homepage" :" http://github.com/soldair/node-jsontoxml" ,
6
- "main" :" ./jsontoxml.js" ,
7
- "devDependencies" :{
8
- "tap" : " * "
2
+ "name" : " jsontoxml" ,
3
+ "version" : " 0.0.6" ,
4
+ "description" : " This is a library designed to render js objects as xml. Its not made to parse or otherwise edit existing xml/html structures." ,
5
+ "homepage" : " http://github.com/soldair/node-jsontoxml" ,
6
+ "main" : " ./jsontoxml.js" ,
7
+ "devDependencies" : {
8
+ "tape" : " ~0.2.2 "
9
9
},
10
- "scripts" :{
11
- "test" :" tap ./test.js"
10
+ "scripts" : {
11
+ "test" : " tape ./test.js"
12
12
},
13
13
"testling" : {
14
14
"files" : " ./test.js" ,
15
15
"browsers" : {
16
- "ie" : [ 8 , 9 ],
17
- "firefox" : [ 13 ],
18
- "chrome" : [ 20 ],
19
- "safari" : [ 5.1 ],
20
- "opera" : [ 12 ]
16
+ "ie" : [
17
+ 8 ,
18
+ 9
19
+ ],
20
+ "firefox" : [
21
+ 13
22
+ ],
23
+ "chrome" : [
24
+ 20
25
+ ],
26
+ "safari" : [
27
+ 5.1
28
+ ],
29
+ "opera" : [
30
+ 12
31
+ ]
21
32
}
22
33
},
23
- "people" :{
24
- "author" :{
25
- "name" :" Ryan Day" ,
26
-
27
- "url" :" http://ryanday.org"
34
+ "people" : {
35
+ "author" : {
36
+ "name" : " Ryan Day" ,
37
+
38
+ "url" : " http://ryanday.org"
28
39
}
29
40
},
30
- "repository" :{
31
- "type" :" git" ,
32
- "url" :" git://github.com/soldair/node-jsontoxml.git"
41
+ "repository" : {
42
+ "type" : " git" ,
43
+ "url" : " git://github.com/soldair/node-jsontoxml.git"
33
44
},
34
- "license" :" MIT" ,
35
- "engines" :{"node" :" >=0.2.0" }
45
+ "license" : " MIT" ,
46
+ "engines" : {
47
+ "node" : " >=0.2.0"
48
+ }
36
49
}
Original file line number Diff line number Diff line change 1
1
//copyright Ryan Day 2010 <http://ryanday.org> [MIT Licensed]
2
2
3
- var test = require ( 'tap' ) . test
3
+ var test = require ( 'tape' )
4
4
, jsonxml = require ( "./jsontoxml.js" )
5
5
;
6
6
You can’t perform that action at this time.
0 commit comments