{
  "_args": [
    [
      {
        "raw": "jmespath@0.15.0",
        "scope": null,
        "escapedName": "jmespath",
        "name": "jmespath",
        "rawSpec": "0.15.0",
        "spec": "0.15.0",
        "type": "version"
      },
      "C:\\workspaces\\coke\\processes\\sync-picasso-formula-to-sfdc\\src\\lambdas\\extract-product-exists\\src\\node_modules\\aws-sdk"
    ]
  ],
  "_from": "jmespath@0.15.0",
  "_id": "jmespath@0.15.0",
  "_inCache": true,
  "_location": "/jmespath",
  "_nodeVersion": "5.8.0",
  "_npmOperationalInternal": {
    "host": "packages-12-west.internal.npmjs.com",
    "tmp": "tmp/jmespath-0.15.0.tgz_1458924686313_0.6043944323901087"
  },
  "_npmUser": {
    "name": "jamesls",
    "email": "js@jamesls.com"
  },
  "_npmVersion": "3.8.3",
  "_phantomChildren": {},
  "_requested": {
    "raw": "jmespath@0.15.0",
    "scope": null,
    "escapedName": "jmespath",
    "name": "jmespath",
    "rawSpec": "0.15.0",
    "spec": "0.15.0",
    "type": "version"
  },
  "_requiredBy": [
    "/aws-sdk"
  ],
  "_resolved": "https://registry.npmjs.org/jmespath/-/jmespath-0.15.0.tgz",
  "_shasum": "a3f222a9aae9f966f5d27c796510e28091764217",
  "_shrinkwrap": null,
  "_spec": "jmespath@0.15.0",
  "_where": "C:\\workspaces\\coke\\processes\\sync-picasso-formula-to-sfdc\\src\\lambdas\\extract-product-exists\\src\\node_modules\\aws-sdk",
  "author": {
    "name": "James Saryerwinnie",
    "email": "js@jamesls.com",
    "url": "http://jamesls.com/"
  },
  "bugs": {
    "url": "http://github.com/jmespath/jmespath.js/issues"
  },
  "contributors": [],
  "dependencies": {},
  "description": "JMESPath implementation in javascript",
  "devDependencies": {
    "grunt": "^0.4.5",
    "grunt-contrib-jshint": "^0.11.0",
    "grunt-contrib-uglify": "^0.11.1",
    "grunt-eslint": "^17.3.1",
    "mocha": "^2.1.0"
  },
  "directories": {
    "test": "test"
  },
  "dist": {
    "shasum": "a3f222a9aae9f966f5d27c796510e28091764217",
    "tarball": "https://registry.npmjs.org/jmespath/-/jmespath-0.15.0.tgz"
  },
  "engines": {
    "node": ">= 0.6.0"
  },
  "gitHead": "72a28807b164317f2c61f0e2372656c424bc4b6c",
  "homepage": "https://github.com/jmespath/jmespath.js",
  "keywords": [
    "jmespath",
    "jsonpath",
    "json",
    "xpath"
  ],
  "licenses": [
    {
      "type": "Apache 2.0",
      "url": "http://github.com/jmespath/jmespath.js/raw/master/LICENSE"
    }
  ],
  "main": "jmespath.js",
  "maintainers": [
    {
      "name": "jamesls",
      "email": "js@jamesls.com"
    }
  ],
  "name": "jmespath",
  "optionalDependencies": {},
  "readme": "# jmespath.js\n\n[![Build Status](https://travis-ci.org/jmespath/jmespath.js.png?branch=master)](https://travis-ci.org/jmespath/jmespath.js)\n\njmespath.js is a javascript implementation of JMESPath,\nwhich is a query language for JSON.  It will take a JSON\ndocument and transform it into another JSON document\nthrough a JMESPath expression.\n\nUsing jmespath.js is really easy.  There's a single function\nyou use, `jmespath.search`:\n\n\n```\n> var jmespath = require('jmespath');\n> jmespath.search({foo: {bar: {baz: [0, 1, 2, 3, 4]}}}, \"foo.bar.baz[2]\")\n2\n```\n\nIn the example we gave the ``search`` function input data of\n`{foo: {bar: {baz: [0, 1, 2, 3, 4]}}}` as well as the JMESPath\nexpression `foo.bar.baz[2]`, and the `search` function evaluated\nthe expression against the input data to produce the result ``2``.\n\nThe JMESPath language can do a lot more than select an element\nfrom a list.  Here are a few more examples:\n\n```\n> jmespath.search({foo: {bar: {baz: [0, 1, 2, 3, 4]}}}, \"foo.bar\")\n{ baz: [ 0, 1, 2, 3, 4 ] }\n\n> jmespath.search({\"foo\": [{\"first\": \"a\", \"last\": \"b\"},\n                           {\"first\": \"c\", \"last\": \"d\"}]},\n                  \"foo[*].first\")\n[ 'a', 'c' ]\n\n> jmespath.search({\"foo\": [{\"age\": 20}, {\"age\": 25},\n                           {\"age\": 30}, {\"age\": 35},\n                           {\"age\": 40}]},\n                  \"foo[?age > `30`]\")\n[ { age: 35 }, { age: 40 } ]\n```\n\n## More Resources\n\nThe example above only show a small amount of what\na JMESPath expression can do.  If you want to take a\ntour of the language, the *best* place to go is the\n[JMESPath Tutorial](http://jmespath.org/tutorial.html).\n\nOne of the best things about JMESPath is that it is\nimplemented in many different programming languages including\npython, ruby, php, lua, etc.  To see a complete list of libraries,\ncheck out the [JMESPath libraries page](http://jmespath.org/libraries.html).\n\nAnd finally, the full JMESPath specification can be found\non the [JMESPath site](http://jmespath.org/specification.html).\n",
  "readmeFilename": "README.md",
  "repository": {
    "type": "git",
    "url": "git://github.com/jmespath/jmespath.js.git"
  },
  "scripts": {
    "test": "mocha test/"
  },
  "version": "0.15.0"
}
