{
  "_args": [
    [
      "is-absolute-url@https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-2.0.0.tgz",
      "/Users/nw/flint/packages/flint"
    ]
  ],
  "_from": "is-absolute-url@>=2.0.0 <3.0.0",
  "_id": "is-absolute-url@2.0.0",
  "_inCache": true,
  "_location": "/is-absolute-url",
  "_phantomChildren": {},
  "_requested": {
    "name": "is-absolute-url",
    "raw": "is-absolute-url@https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-2.0.0.tgz",
    "rawSpec": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-2.0.0.tgz",
    "scope": null,
    "spec": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-2.0.0.tgz",
    "type": "remote"
  },
  "_requiredBy": [
    "/postcss-normalize-url"
  ],
  "_resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-2.0.0.tgz",
  "_shasum": "9c4b20b0e5c0cbef9a479a367ede6f991679f359",
  "_shrinkwrap": null,
  "_spec": "is-absolute-url@https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-2.0.0.tgz",
  "_where": "/Users/nw/flint/packages/flint",
  "author": {
    "email": "sindresorhus@gmail.com",
    "name": "Sindre Sorhus",
    "url": "http://sindresorhus.com"
  },
  "bugs": {
    "url": "https://github.com/sindresorhus/is-absolute-url/issues"
  },
  "dependencies": {},
  "description": "Check if an URL is absolute",
  "devDependencies": {
    "mocha": "*"
  },
  "engines": {
    "node": ">=0.10.0"
  },
  "files": [
    "index.js"
  ],
  "homepage": "https://github.com/sindresorhus/is-absolute-url#readme",
  "keywords": [
    "absolute",
    "check",
    "is",
    "relative",
    "uri",
    "url"
  ],
  "license": "MIT",
  "name": "is-absolute-url",
  "optionalDependencies": {},
  "readme": "# is-absolute-url [![Build Status](https://travis-ci.org/sindresorhus/is-absolute-url.svg?branch=master)](https://travis-ci.org/sindresorhus/is-absolute-url)\n\n> Check if an URL is absolute\n\n\n## Install\n\n```sh\n$ npm install --save is-absolute-url\n```\n\n\n## Usage\n\n```js\nvar isAbsoluteUrl = require('is-absolute-url');\n\nisAbsoluteUrl('http://sindresorhus.com/foo/bar');\n//=> true\n\nisAbsoluteUrl('//sindresorhus.com');\n//=> false\n\nisAbsoluteUrl('foo/bar');\n//=> false\n```\n\n\n## Related\n\nSee [is-relative-url](https://github.com/sindresorhus/is-relative-url) for the inverse.\n\n\n## License\n\nMIT © [Sindre Sorhus](http://sindresorhus.com)\n",
  "readmeFilename": "readme.md",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/sindresorhus/is-absolute-url.git"
  },
  "scripts": {
    "test": "mocha"
  },
  "version": "2.0.0"
}
