Skip to content

Commit

Permalink
switching tap for tape
Browse files Browse the repository at this point in the history
  • Loading branch information
soldair committed Feb 24, 2013
1 parent 88bb1d1 commit e46e6db
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 25 deletions.
61 changes: 37 additions & 24 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,36 +1,49 @@
{
"name":"jsontoxml",
"version":"0.0.6",
"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/soldair/node-jsontoxml",
"main":"./jsontoxml.js",
"devDependencies":{
"tap":"*"
"name": "jsontoxml",
"version": "0.0.6",
"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/soldair/node-jsontoxml",
"main": "./jsontoxml.js",
"devDependencies": {
"tape": "~0.2.2"
},
"scripts":{
"test":"tap ./test.js"
"scripts": {
"test": "tape ./test.js"
},
"testling": {
"files": "./test.js",
"browsers": {
"ie": [ 8, 9 ],
"firefox": [ 13 ],
"chrome": [ 20 ],
"safari": [ 5.1 ],
"opera": [ 12 ]
"ie": [
8,
9
],
"firefox": [
13
],
"chrome": [
20
],
"safari": [
5.1
],
"opera": [
12
]
}
},
"people":{
"author":{
"name":"Ryan Day",
"email":"soldair@gmail.com",
"url":"http://ryanday.org"
"people": {
"author": {
"name": "Ryan Day",
"email": "soldair@gmail.com",
"url": "http://ryanday.org"
}
},
"repository":{
"type":"git",
"url":"git://github.com/soldair/node-jsontoxml.git"
"repository": {
"type": "git",
"url": "git://github.com/soldair/node-jsontoxml.git"
},
"license":"MIT",
"engines":{"node":">=0.2.0"}
"license": "MIT",
"engines": {
"node": ">=0.2.0"
}
}
2 changes: 1 addition & 1 deletion test.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//copyright Ryan Day 2010 <http://ryanday.org> [MIT Licensed]

var test = require('tap').test
var test = require('tape')
, jsonxml = require("./jsontoxml.js")
;

Expand Down

0 comments on commit e46e6db

Please sign in to comment.