{
  "_args": [
    [
      {
        "raw": "xtraverse@0.1.x",
        "scope": null,
        "escapedName": "xtraverse",
        "name": "xtraverse",
        "rawSpec": "0.1.x",
        "spec": ">=0.1.0 <0.2.0",
        "type": "range"
      },
      "/Users/robertdodson/Documents/htdocs/voting-app/node_modules/passport-twitter"
    ]
  ],
  "_from": "xtraverse@>=0.1.0 <0.2.0",
  "_id": "xtraverse@0.1.0",
  "_inCache": true,
  "_installable": true,
  "_location": "/xtraverse",
  "_npmUser": {
    "name": "jaredhanson",
    "email": "jaredhanson@gmail.com"
  },
  "_npmVersion": "1.2.25",
  "_phantomChildren": {},
  "_requested": {
    "raw": "xtraverse@0.1.x",
    "scope": null,
    "escapedName": "xtraverse",
    "name": "xtraverse",
    "rawSpec": "0.1.x",
    "spec": ">=0.1.0 <0.2.0",
    "type": "range"
  },
  "_requiredBy": [
    "/passport-twitter"
  ],
  "_resolved": "https://registry.npmjs.org/xtraverse/-/xtraverse-0.1.0.tgz",
  "_shasum": "b741bad018ef78d8a9d2e83ade007b3f7959c732",
  "_shrinkwrap": null,
  "_spec": "xtraverse@0.1.x",
  "_where": "/Users/robertdodson/Documents/htdocs/voting-app/node_modules/passport-twitter",
  "author": {
    "name": "Jared Hanson",
    "email": "jaredhanson@gmail.com",
    "url": "http://www.jaredhanson.net/"
  },
  "bugs": {
    "url": "http://github.com/jaredhanson/node-xtraverse/issues"
  },
  "dependencies": {
    "xmldom": "0.1.x"
  },
  "description": "Wrapper for simplifying XML traversal.",
  "devDependencies": {
    "chai": "1.x.x",
    "mocha": "1.x.x"
  },
  "directories": {},
  "dist": {
    "shasum": "b741bad018ef78d8a9d2e83ade007b3f7959c732",
    "tarball": "https://registry.npmjs.org/xtraverse/-/xtraverse-0.1.0.tgz"
  },
  "engines": {
    "node": ">= 0.4.0"
  },
  "homepage": "https://github.com/jaredhanson/node-xtraverse#readme",
  "keywords": [
    "xml",
    "dom",
    "traversal",
    "builder",
    "jquery"
  ],
  "licenses": [
    {
      "type": "MIT",
      "url": "http://www.opensource.org/licenses/MIT"
    }
  ],
  "main": "./lib",
  "maintainers": [
    {
      "name": "jaredhanson",
      "email": "jaredhanson@gmail.com"
    }
  ],
  "name": "xtraverse",
  "optionalDependencies": {},
  "readme": "# xtraverse\n\nSimplified traversal and building of an XML DOM.\n\nThis module provides a [jQuery](http://jquery.com/)-like wrapper, but geared for\ntraversing and manipulating an XML DOM, as opposeed to an HTML DOM.  The API\naims to be compatible with [Strophe.js](https://github.com/strophe/strophejs)'\n`Builder` and [Less-Than XML](https://github.com/astro/ltx).  The underlying DOM\nis W3C standard, provided by [XMLDOM](https://github.com/jindw/xmldom).\n\n## Install\n\n    $ npm install xtraverse\n\n## Usage\n\n#### Parse XML\n\n```javascript\nvar xml = fs.readFileSync('feed.xml', 'utf8');\nvar feed = XT(xml);\n```\n\n#### Traverse XML\n\n```javascript\nconsole.log(feed.children('title').text());\nfor (var link = feed.children().first('link'); link.length > 0; link = link.next('link')) {\n  console.log(link.attr('href'));\n}\nfor (var entry = feed.children().first('entry'); entry.length > 0; entry = entry.next('entry')) {\n  console.log('Entry: ' + entry.children('title').text());\n}\n```\n\n#### Build XML\n\n```javascript\nvar feed = XT('<feed xmlns=\"http://www.w3.org/2005/Atom\"/>')\n  .c('title').t('Example Feed').up()\n  .c('link', { href: 'http://example.org/' })\n  .c('entry').c('title').t('Atom-Powered Robots Run Amok').up().up()\n  .c('entry').c('title').t('Today I Ate Pancakes');\n```\n\n## Tests\n\n    $ npm install\n    $ npm test\n\n## Status\n\n[![Build Status](https://secure.travis-ci.org/jaredhanson/node-xtraverse.png)](http://travis-ci.org/jaredhanson/node-xtraverse)\n[![David DM](https://david-dm.org/jaredhanson/node-xtraverse.png)](http://david-dm.org/jaredhanson/node-xtraverse)\n\n## Credits\n\n  - [Jared Hanson](http://github.com/jaredhanson)\n\n## License\n\n[The MIT License](http://opensource.org/licenses/MIT)\n\nCopyright (c) 2013 Jared Hanson <[http://jaredhanson.net/](http://jaredhanson.net/)>\n",
  "readmeFilename": "README.md",
  "repository": {
    "type": "git",
    "url": "git://github.com/jaredhanson/node-xtraverse.git"
  },
  "scripts": {
    "test": "node_modules/.bin/mocha --reporter spec --require test/bootstrap/node test/*.test.js"
  },
  "testling": {
    "browsers": [
      "chrome/latest"
    ],
    "harness": "mocha",
    "files": [
      "test/bootstrap/testling.js",
      "test/*.test.js"
    ]
  },
  "version": "0.1.0"
}
