{
  "_args": [
    [
      "strict-uri-encode@https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz",
      "/Users/nw/flint/packages/flint"
    ]
  ],
  "_from": "strict-uri-encode@>=1.0.0 <2.0.0",
  "_id": "strict-uri-encode@1.1.0",
  "_inCache": true,
  "_location": "/strict-uri-encode",
  "_phantomChildren": {},
  "_requested": {
    "name": "strict-uri-encode",
    "raw": "strict-uri-encode@https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz",
    "rawSpec": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz",
    "scope": null,
    "spec": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz",
    "type": "remote"
  },
  "_requiredBy": [
    "/query-string"
  ],
  "_resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz",
  "_shasum": "279b225df1d582b1f54e65addd4352e18faa0713",
  "_shrinkwrap": null,
  "_spec": "strict-uri-encode@https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz",
  "_where": "/Users/nw/flint/packages/flint",
  "author": {
    "email": "kevinmartensson@gmail.com",
    "name": "Kevin Mårtensson",
    "url": "github.com/kevva"
  },
  "bugs": {
    "url": "https://github.com/kevva/strict-uri-encode/issues"
  },
  "dependencies": {},
  "description": "A stricter URI encode adhering to RFC 3986",
  "devDependencies": {
    "ava": "^0.0.4"
  },
  "engines": {
    "node": ">=0.10.0"
  },
  "files": [
    "index.js"
  ],
  "homepage": "https://github.com/kevva/strict-uri-encode#readme",
  "keywords": [
    "RFC3986",
    "component",
    "encode",
    "uri"
  ],
  "license": "MIT",
  "name": "strict-uri-encode",
  "optionalDependencies": {},
  "readme": "# strict-uri-encode [![Build Status](https://travis-ci.org/kevva/strict-uri-encode.svg?branch=master)](https://travis-ci.org/kevva/strict-uri-encode)\n\n> A stricter URI encode adhering to [RFC 3986](http://tools.ietf.org/html/rfc3986)\n\n\n## Install\n\n```\n$ npm install --save strict-uri-encode\n```\n\n\n## Usage\n\n```js\nvar strictUriEncode = require('strict-uri-encode');\n\nstrictUriEncode('unicorn!foobar')\n//=> 'unicorn%21foobar'\n\nstrictUriEncode('unicorn*foobar')\n//=> 'unicorn%2Afoobar'\n```\n\n\n## API\n\n### strictUriEncode(string)\n\n#### string\n\n*Required*  \nType: `string`, `number`\n\nString to URI encode.\n\n\n## License\n\nMIT © [Kevin Mårtensson](http://github.com/kevva)\n",
  "readmeFilename": "readme.md",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/kevva/strict-uri-encode.git"
  },
  "scripts": {
    "test": "node test.js"
  },
  "version": "1.1.0"
}
