{
  "_args": [
    [
      {
        "raw": "esquery@^1.0.0",
        "scope": null,
        "escapedName": "esquery",
        "name": "esquery",
        "rawSpec": "^1.0.0",
        "spec": ">=1.0.0 <2.0.0",
        "type": "range"
      },
      "/home/travis/build/lukesargeant/ember-sparkline/node_modules/eslint"
    ]
  ],
  "_from": "esquery@>=1.0.0 <2.0.0",
  "_id": "esquery@1.0.0",
  "_inCache": true,
  "_location": "/esquery",
  "_nodeVersion": "7.5.0",
  "_npmOperationalInternal": {
    "host": "packages-12-west.internal.npmjs.com",
    "tmp": "tmp/esquery-1.0.0.tgz_1489187536588_0.0852991035208106"
  },
  "_npmUser": {
    "name": "michaelficarra",
    "email": "npm@michael.ficarra.me"
  },
  "_npmVersion": "4.1.2",
  "_phantomChildren": {},
  "_requested": {
    "raw": "esquery@^1.0.0",
    "scope": null,
    "escapedName": "esquery",
    "name": "esquery",
    "rawSpec": "^1.0.0",
    "spec": ">=1.0.0 <2.0.0",
    "type": "range"
  },
  "_requiredBy": [
    "/eslint"
  ],
  "_resolved": "https://registry.npmjs.org/esquery/-/esquery-1.0.0.tgz",
  "_shasum": "cfba8b57d7fba93f17298a8a006a04cda13d80fa",
  "_shrinkwrap": null,
  "_spec": "esquery@^1.0.0",
  "_where": "/home/travis/build/lukesargeant/ember-sparkline/node_modules/eslint",
  "author": {
    "name": "Joel Feenstra",
    "email": "jrfeenst+esquery@gmail.com"
  },
  "bugs": {
    "url": "https://github.com/jrfeenst/esquery/issues"
  },
  "dependencies": {
    "estraverse": "^4.0.0"
  },
  "description": "A query library for ECMAScript AST using a CSS selector like query language.",
  "devDependencies": {
    "commonjs-everywhere": "~0.9.4",
    "esprima": "~1.1.1",
    "jstestr": ">=0.4",
    "pegjs": "~0.7.0"
  },
  "directories": {},
  "dist": {
    "shasum": "cfba8b57d7fba93f17298a8a006a04cda13d80fa",
    "tarball": "https://registry.npmjs.org/esquery/-/esquery-1.0.0.tgz"
  },
  "engines": {
    "node": ">=0.6"
  },
  "files": [
    "esquery.js",
    "parser.js",
    "license.txt",
    "README.md"
  ],
  "gitHead": "c029e89dcef7bc4ca66588a503ec154bd68f0e05",
  "homepage": "https://github.com/jrfeenst/esquery#readme",
  "keywords": [
    "ast",
    "ecmascript",
    "javascript",
    "query"
  ],
  "license": "BSD",
  "main": "esquery.js",
  "maintainers": [
    {
      "name": "jrfeenst",
      "email": "jrfeenst@gmail.com"
    },
    {
      "name": "michaelficarra",
      "email": "npm@michael.ficarra.me"
    }
  ],
  "name": "esquery",
  "optionalDependencies": {},
  "preferGlobal": false,
  "readme": "ESQuery is a library for querying the AST output by Esprima for patterns of syntax using a CSS style selector system. Check out the demo:\n\n[demo](https://estools.github.io/esquery/)\n\nThe following selectors are supported:\n* AST node type: `ForStatement`\n* [wildcard](http://dev.w3.org/csswg/selectors4/#universal-selector): `*`\n* [attribute existence](http://dev.w3.org/csswg/selectors4/#attribute-selectors): `[attr]`\n* [attribute value](http://dev.w3.org/csswg/selectors4/#attribute-selectors): `[attr=\"foo\"]` or `[attr=123]`\n* attribute regex: `[attr=/foo.*/]`\n* attribute conditons: `[attr!=\"foo\"]`, `[attr>2]`, `[attr<3]`, `[attr>=2]`, or `[attr<=3]` \n* nested attribute: `[attr.level2=\"foo\"]`\n* field: `FunctionDeclaration > Identifier.id`\n* [First](http://dev.w3.org/csswg/selectors4/#the-first-child-pseudo) or [last](http://dev.w3.org/csswg/selectors4/#the-last-child-pseudo) child: `:first-child` or `:last-child`\n* [nth-child](http://dev.w3.org/csswg/selectors4/#the-nth-child-pseudo) (no ax+b support): `:nth-child(2)`\n* [nth-last-child](http://dev.w3.org/csswg/selectors4/#the-nth-last-child-pseudo) (no ax+b support): `:nth-last-child(1)`\n* [descendant](http://dev.w3.org/csswg/selectors4/#descendant-combinators): `ancestor descendant`\n* [child](http://dev.w3.org/csswg/selectors4/#child-combinators): `parent > child`\n* [following sibling](http://dev.w3.org/csswg/selectors4/#general-sibling-combinators): `node ~ sibling`\n* [adjacent sibling](http://dev.w3.org/csswg/selectors4/#adjacent-sibling-combinators): `node + adjacent`\n* [negation](http://dev.w3.org/csswg/selectors4/#negation-pseudo): `:not(ForStatement)`\n* [matches-any](http://dev.w3.org/csswg/selectors4/#matches): `:matches([attr] > :first-child, :last-child)`\n* [subject indicator](http://dev.w3.org/csswg/selectors4/#subject): `!IfStatement > [name=\"foo\"]`\n* class of AST node: `:statement`, `:expression`, `:declaration`, `:function`, or `:pattern`\n\n[![Build Status](https://travis-ci.org/estools/esquery.png?branch=master)](https://travis-ci.org/estools/esquery)\n",
  "readmeFilename": "README.md",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/jrfeenst/esquery.git"
  },
  "scripts": {
    "test": "node node_modules/jstestr/bin/jstestr.js path=tests"
  },
  "version": "1.0.0"
}
