{
  "_args": [
    [
      {
        "raw": "quick-temp@^0.1.3",
        "scope": null,
        "escapedName": "quick-temp",
        "name": "quick-temp",
        "rawSpec": "^0.1.3",
        "spec": ">=0.1.3 <0.2.0",
        "type": "range"
      },
      "/home/travis/build/lukesargeant/ember-sparkline/node_modules/broccoli-plugin"
    ]
  ],
  "_from": "quick-temp@>=0.1.3 <0.2.0",
  "_id": "quick-temp@0.1.8",
  "_inCache": true,
  "_location": "/quick-temp",
  "_nodeVersion": "7.4.0",
  "_npmOperationalInternal": {
    "host": "packages-12-west.internal.npmjs.com",
    "tmp": "tmp/quick-temp-0.1.8.tgz_1487086985971_0.532691725762561"
  },
  "_npmUser": {
    "name": "joliss",
    "email": "joliss42@gmail.com"
  },
  "_npmVersion": "4.0.5",
  "_phantomChildren": {},
  "_requested": {
    "raw": "quick-temp@^0.1.3",
    "scope": null,
    "escapedName": "quick-temp",
    "name": "quick-temp",
    "rawSpec": "^0.1.3",
    "spec": ">=0.1.3 <0.2.0",
    "type": "range"
  },
  "_requiredBy": [
    "/broccoli-builder",
    "/broccoli-plugin",
    "/broccoli-sri-hash/broccoli-plugin",
    "/broccoli-writer",
    "/ember-cli",
    "/tree-sync"
  ],
  "_resolved": "https://registry.npmjs.org/quick-temp/-/quick-temp-0.1.8.tgz",
  "_shasum": "bab02a242ab8fb0dd758a3c9776b32f9a5d94408",
  "_shrinkwrap": null,
  "_spec": "quick-temp@^0.1.3",
  "_where": "/home/travis/build/lukesargeant/ember-sparkline/node_modules/broccoli-plugin",
  "author": {
    "name": "Jo Liss",
    "email": "joliss42@gmail.com"
  },
  "bugs": {
    "url": "https://github.com/joliss/node-quick-temp/issues"
  },
  "dependencies": {
    "mktemp": "~0.4.0",
    "rimraf": "^2.5.4",
    "underscore.string": "~3.3.4"
  },
  "description": "Create and remove temporary directories with minimal effort",
  "devDependencies": {},
  "directories": {},
  "dist": {
    "shasum": "bab02a242ab8fb0dd758a3c9776b32f9a5d94408",
    "tarball": "https://registry.npmjs.org/quick-temp/-/quick-temp-0.1.8.tgz"
  },
  "gitHead": "c5e1f7faeea22f65b6a34c4ae7b690972159802c",
  "homepage": "https://github.com/joliss/node-quick-temp#readme",
  "license": "MIT",
  "main": "index.js",
  "maintainers": [
    {
      "name": "joliss",
      "email": "joliss42@gmail.com"
    }
  ],
  "name": "quick-temp",
  "optionalDependencies": {},
  "readme": "# node-quick-temp\n\nCreate and remove temporary directories. Useful for build tools, like Broccoli\nplugins. Smart about naming, and placing them in `./tmp` if possible, so you\ndon't have to worry about this.\n\n## Installation\n\n```bash\nnpm install --save quick-temp\n```\n\n## Usage\n\n```js\nvar quickTemp = require('quick-temp');\n```\n\n### Creating a temporary directory\n\nTo make a temporary and assign its path to `this.tmpDestDir`, call either one\nof these:\n\n```js\nquickTemp.makeOrRemake(this, 'tmpDestDir');\n// or\nquickTemp.makeOrReuse(this, 'tmpDestDir');\n```\n\nIf `this.tmpDestDir` already contains a path, `makeOrRemake` will remove it\nfirst and then create a new directory, whereas `makeOrReuse` will be a no-op.\n\nBoth functions also return the path of the temporary directory.\n\nAn optional third argument lets you override the class-name component of the\ntemporary directory name:\n\n```js\nquickTemp.makeOrRemake(this, 'tmpDestDir', 'TreeMerger');\nquickTemp.makeOrRemake(this, 'tmpDestDir', this.constructor.name); // default\n```\n\n### Removing a temporary directory\n\nTo remove a previously-created temporary directory and all its contents, call\n\n```js\nquickTemp.remove(this, 'tmpDestDir');\n```\n\nThis will also assign `this.tmpDestDir = null`. If `this.tmpDestDir` is\nalready null or undefined, it will be a no-op.\n",
  "readmeFilename": "README.md",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/joliss/node-quick-temp.git"
  },
  "scripts": {},
  "version": "0.1.8"
}
