Skip to content

Commit

Permalink
latest tape
Browse files Browse the repository at this point in the history
  • Loading branch information
James Halliday committed Feb 7, 2015
1 parent 3acb0d7 commit 1d18617
Showing 1 changed file with 55 additions and 39 deletions.
94 changes: 55 additions & 39 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,42 +1,58 @@
{
"name" : "deep-equal",
"version" : "0.2.1",
"description" : "node's assert.deepEqual algorithm",
"main" : "index.js",
"directories" : {
"lib" : ".",
"example" : "example",
"test" : "test"
},
"scripts" : {
"test" : "tape test/*.js"
},
"devDependencies" : {
"tape" : "~2.3.2"
},
"repository" : {
"type" : "git",
"url" : "https://github.com/substack/node-deep-equal.git"
},
"keywords" : [
"equality",
"equal",
"compare"
],
"author" : {
"name" : "James Halliday",
"email" : "[email protected]",
"url" : "http://substack.net"
},
"license" : "MIT",
"testling" : {
"files" : "test/*.js",
"browsers" : {
"ie" : [ 6, 7, 8, 9 ],
"ff" : [ 3.5, 10, 15 ],
"chrome" : [ 10, 22 ],
"safari" : [ 5.1 ],
"opera" : [ 12 ]
}
"name": "deep-equal",
"version": "0.2.1",
"description": "node's assert.deepEqual algorithm",
"main": "index.js",
"directories": {
"lib": ".",
"example": "example",
"test": "test"
},
"scripts": {
"test": "tape test/*.js"
},
"devDependencies": {
"tape": "^3.5.0"
},
"repository": {
"type": "git",
"url": "https://github.com/substack/node-deep-equal.git"
},
"keywords": [
"equality",
"equal",
"compare"
],
"author": {
"name": "James Halliday",
"email": "[email protected]",
"url": "http://substack.net"
},
"license": "MIT",
"testling": {
"files": "test/*.js",
"browsers": {
"ie": [
6,
7,
8,
9
],
"ff": [
3.5,
10,
15
],
"chrome": [
10,
22
],
"safari": [
5.1
],
"opera": [
12
]
}
}
}

0 comments on commit 1d18617

Please sign in to comment.