{
  "_args": [
    [
      "deep-equal@https://registry.npmjs.org/deep-equal/-/deep-equal-1.0.1.tgz",
      "/Users/nw/flint/packages/flint"
    ]
  ],
  "_from": "deep-equal@*",
  "_id": "deep-equal@1.0.1",
  "_inCache": true,
  "_location": "/deep-equal",
  "_phantomChildren": {},
  "_requested": {
    "name": "deep-equal",
    "raw": "deep-equal@https://registry.npmjs.org/deep-equal/-/deep-equal-1.0.1.tgz",
    "rawSpec": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.0.1.tgz",
    "scope": null,
    "spec": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.0.1.tgz",
    "type": "remote"
  },
  "_requiredBy": [
    "/utile"
  ],
  "_resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.0.1.tgz",
  "_shasum": "f5d260292b660e084eff4cdbc9f08ad3247448b5",
  "_shrinkwrap": null,
  "_spec": "deep-equal@https://registry.npmjs.org/deep-equal/-/deep-equal-1.0.1.tgz",
  "_where": "/Users/nw/flint/packages/flint",
  "author": {
    "email": "mail@substack.net",
    "name": "James Halliday",
    "url": "http://substack.net"
  },
  "bugs": {
    "url": "https://github.com/substack/node-deep-equal/issues"
  },
  "dependencies": {},
  "description": "node's assert.deepEqual algorithm",
  "devDependencies": {
    "tape": "^3.5.0"
  },
  "directories": {
    "example": "example",
    "lib": ".",
    "test": "test"
  },
  "homepage": "https://github.com/substack/node-deep-equal#readme",
  "keywords": [
    "compare",
    "equal",
    "equality"
  ],
  "license": "MIT",
  "main": "index.js",
  "name": "deep-equal",
  "optionalDependencies": {},
  "readme": "# deep-equal\n\nNode's `assert.deepEqual() algorithm` as a standalone module.\n\nThis module is around [5 times faster](https://gist.github.com/2790507)\nthan wrapping `assert.deepEqual()` in a `try/catch`.\n\n[![browser support](https://ci.testling.com/substack/node-deep-equal.png)](https://ci.testling.com/substack/node-deep-equal)\n\n[![build status](https://secure.travis-ci.org/substack/node-deep-equal.png)](https://travis-ci.org/substack/node-deep-equal)\n\n# example\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\n# methods\n\n``` js\nvar deepEqual = require('deep-equal')\n```\n\n## deepEqual(a, b, opts)\n\nCompare objects `a` and `b`, returning whether they are equal according to a\nrecursive equality algorithm.\n\nIf `opts.strict` is `true`, use strict equality (`===`) to compare leaf nodes.\nThe default is to use coercive equality (`==`) because that's how\n`assert.deepEqual()` works by default.\n\n# install\n\nWith [npm](http://npmjs.org) do:\n\n```\nnpm install deep-equal\n```\n\n# test\n\nWith [npm](http://npmjs.org) do:\n\n```\nnpm test\n```\n\n# license\n\nMIT. Derived largely from node's assert module.\n",
  "readmeFilename": "readme.markdown",
  "repository": {
    "type": "git",
    "url": "git+ssh://git@github.com/substack/node-deep-equal.git"
  },
  "scripts": {
    "test": "tape test/*.js"
  },
  "testling": {
    "browsers": {
      "chrome": [
        10,
        22
      ],
      "ff": [
        10,
        15,
        3.5
      ],
      "ie": [
        6,
        7,
        8,
        9
      ],
      "opera": [
        12
      ],
      "safari": [
        5.1
      ]
    },
    "files": "test/*.js"
  },
  "version": "1.0.1"
}
