Skip to content

Commit e46e6db

Browse files
committed
switching tap for tape
1 parent 88bb1d1 commit e46e6db

File tree

2 files changed

+38
-25
lines changed

2 files changed

+38
-25
lines changed

package.json

Lines changed: 37 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,49 @@
11
{
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"
99
},
10-
"scripts":{
11-
"test":"tap ./test.js"
10+
"scripts": {
11+
"test": "tape ./test.js"
1212
},
1313
"testling": {
1414
"files": "./test.js",
1515
"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+
]
2132
}
2233
},
23-
"people":{
24-
"author":{
25-
"name":"Ryan Day",
26-
"email":"[email protected]",
27-
"url":"http://ryanday.org"
34+
"people": {
35+
"author": {
36+
"name": "Ryan Day",
37+
"email": "[email protected]",
38+
"url": "http://ryanday.org"
2839
}
2940
},
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"
3344
},
34-
"license":"MIT",
35-
"engines":{"node":">=0.2.0"}
45+
"license": "MIT",
46+
"engines": {
47+
"node": ">=0.2.0"
48+
}
3649
}

test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//copyright Ryan Day 2010 <http://ryanday.org> [MIT Licensed]
22

3-
var test = require('tap').test
3+
var test = require('tape')
44
, jsonxml = require("./jsontoxml.js")
55
;
66

0 commit comments

Comments
 (0)