Name: js-handler/node_modules/restify/node_modules/deep-equal/package.json 
1:
{
2:
  "name": "deep-equal",
3:
  "version": "0.0.0",
4:
  "description": "node's assert.deepEqual algorithm",
5:
  "main": "index.js",
6:
  "directories": {
7:
    "lib": ".",
8:
    "example": "example",
9:
    "test": "test"
10:
  },
11:
  "scripts": {
12:
    "test": "tap test/*.js"
13:
  },
14:
  "devDependencies": {
15:
    "tap": "0.0.x"
16:
  },
17:
  "repository": {
18:
    "type": "git",
19:
    "url": "http://github.com/substack/node-deep-equal.git"
20:
  },
21:
  "keywords": [
22:
    "equality",
23:
    "equal",
24:
    "compare"
25:
  ],
26:
  "author": {
27:
    "name": "James Halliday",
28:
    "email": "[email protected]",
29:
    "url": "http://substack.net"
30:
  },
31:
  "license": "MIT/X11",
32:
  "engine": {
33:
    "node": ">=0.4"
34:
  },
35:
  "readme": "deep-equal\n==========\n\nNode's `assert.deepEqual() algorithm` as a standalone module.\n\nexample\n=======\n\n``` js\nvar equal = require('deep-equal');\nconsole.dir([\n    equal(\n        { a : [ 2, 3 ], b : [ 4 ] },\n        { a : [ 2, 3 ], b : [ 4 ] }\n    ),\n    equal(\n        { x : 5, y : [6] },\n        { x : 5, y : 6 }\n    )\n]);\n```\n\nmethods\n=======\n\nvar deepEqual = require('deep-equal')\n\ndeepEqual(a, b)\n---------------\n\nCompare objects `a` and `b`, returning whether they are equal according to a\nrecursive equality algorithm.\n\ninstall\n=======\n\nWith [npm](http://npmjs.org) do:\n\n```\nnpm install deep-equal\n```\n\ntest\n====\n\nWith [npm](http://npmjs.org) do:\n\n```\nnpm test\n```\n\nlicense\n=======\n\nMIT. Derived largely from node's assert module.\n",
36:
  "readmeFilename": "README.markdown",
37:
  "bugs": {
38:
    "url": "https://github.com/substack/node-deep-equal/issues"
39:
  },
40:
  "_id": "[email protected]",
41:
  "dist": {
42:
    "shasum": "ced213477fce333c5be1d8d84b3de3d9cb72cf15"
43:
  },
44:
  "_from": "[email protected]",
45:
  "_resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-0.0.0.tgz"
46:
}