{
  "_args": [
    [
      {
        "raw": "v8flags@^2.0.2",
        "scope": null,
        "escapedName": "v8flags",
        "name": "v8flags",
        "rawSpec": "^2.0.2",
        "spec": ">=2.0.2 <3.0.0",
        "type": "range"
      },
      "E:\\Mine\\Project\\git\\laya\\dawawa\\layaairdoc_cmd\\node_modules\\gulp"
    ]
  ],
  "_from": "v8flags@>=2.0.2 <3.0.0",
  "_id": "v8flags@2.1.1",
  "_inCache": true,
  "_location": "/v8flags",
  "_nodeVersion": "0.10.41",
  "_npmOperationalInternal": {
    "host": "packages-12-west.internal.npmjs.com",
    "tmp": "tmp/v8flags-2.1.1.tgz_1492553662014_0.08135617268271744"
  },
  "_npmUser": {
    "name": "phated",
    "email": "blaine.bublitz@gmail.com"
  },
  "_npmVersion": "2.15.2",
  "_phantomChildren": {},
  "_requested": {
    "raw": "v8flags@^2.0.2",
    "scope": null,
    "escapedName": "v8flags",
    "name": "v8flags",
    "rawSpec": "^2.0.2",
    "spec": ">=2.0.2 <3.0.0",
    "type": "range"
  },
  "_requiredBy": [
    "/gulp"
  ],
  "_resolved": "https://registry.npmjs.org/v8flags/-/v8flags-2.1.1.tgz",
  "_shasum": "aab1a1fa30d45f88dd321148875ac02c0b55e5b4",
  "_shrinkwrap": null,
  "_spec": "v8flags@^2.0.2",
  "_where": "E:\\Mine\\Project\\git\\laya\\dawawa\\layaairdoc_cmd\\node_modules\\gulp",
  "author": {
    "name": "Tyler Kellen",
    "url": "http://goingslowly.com/"
  },
  "bugs": {
    "url": "https://github.com/tkellen/node-v8flags/issues"
  },
  "dependencies": {
    "user-home": "^1.1.1"
  },
  "description": "Get available v8 flags.",
  "devDependencies": {
    "async": "^0.9.0",
    "chai": "~1.9.1",
    "mocha": "~1.21.4"
  },
  "directories": {},
  "dist": {
    "shasum": "aab1a1fa30d45f88dd321148875ac02c0b55e5b4",
    "tarball": "https://registry.npmjs.org/v8flags/-/v8flags-2.1.1.tgz"
  },
  "engines": {
    "node": ">= 0.10.0"
  },
  "gitHead": "4c628146efa7eda11df0e10c73b3d8687873569e",
  "homepage": "https://github.com/tkellen/node-v8flags",
  "keywords": [
    "v8 flags",
    "harmony flags"
  ],
  "licenses": [
    {
      "type": "MIT",
      "url": "https://github.com/tkellen/node-v8flags/blob/master/LICENSE"
    }
  ],
  "main": "index.js",
  "maintainers": [
    {
      "name": "ilikebits",
      "email": "leo@leozhang.me"
    },
    {
      "name": "phated",
      "email": "blaine@iceddev.com"
    },
    {
      "name": "tkellen",
      "email": "tyler@sleekcode.net"
    }
  ],
  "name": "v8flags",
  "optionalDependencies": {},
  "readme": "# v8flags [![Build Status](https://secure.travis-ci.org/js-cli/js-v8flags.png)](http://travis-ci.org/js-cli/js-v8flags) [![Build status](https://ci.appveyor.com/api/projects/status/9psgmwayx9kpol1a?svg=true)](https://ci.appveyor.com/project/js-cli/js-v8flags)\n> Get available v8 flags.\n\n[![NPM](https://nodei.co/npm/v8flags.png)](https://nodei.co/npm/v8flags/)\n\n## Example\n```js\nconst v8flags = require('v8flags');\n\nv8flags(function (err, results) {\n  console.log(results);  // [ '--use_strict',\n                         //   '--es5_readonly',\n                         //   '--es52_globals',\n                         //   '--harmony_typeof',\n                         //   '--harmony_scoping',\n                         //   '--harmony_modules',\n                         //   '--harmony_proxies',\n                         //   '--harmony_collections',\n                         //   '--harmony',\n                         // ...\n});\n```\n\n## Release History\n\n* 2017-04-18 - v2.1.0 - hash username to support invalid path characters\n* 2017-03-31 - v2.0.12 - don't pollute global namespace\n* 2015-12-07 - v2.0.11 - cache to temp directory if home is present but unwritable\n* 2015-07-28 - v2.0.10 - don't throw for electron runtime, just call back with empty array\n* 2015-06-25 - v2.0.9 - call back with flags even if cache file can't be written\n* 2015-06-15 - v2.0.7 - revert to 2.0.5 behavior.\n* 2015-06-15 - v2.0.6 - store cache file in ~/.cache or ~/AppData/Local depending on platform\n* 2015-04-18 - v2.0.5 - attempt to require config file, if this throws for any reason, fopen w+ and re-create\n* 2015-04-16 - v2.0.4 - when concurrent processes are run and no config exists, don't append to the cached config.\n* 2015-03-31 - v2.0.3 - prefer to store config files in user home over tmp\n* 2015-01-18 - v2.0.2 - keep his dark tentacles contained\n* 2015-01-15 - v2.0.1 - store temp file in `os.tmpdir()`, drop support for node 0.8\n* 2015-01-15 - v2.0.0 - make the stupid thing async\n* 2014-12-22 - v1.0.8 - exclude `--help` flag\n* 2014-12-20 - v1.0.7 - pre-cache flags for every version of node from 0.8 to 0.11\n* 2014-12-09 - v1.0.6 - revert to 1.0.0 behavior\n* 2014-11-26 - v1.0.5 - get node executable from `process.execPath`\n* 2014-11-18 - v1.0.4 - wrap node executable path in quotes\n* 2014-11-17 - v1.0.3 - get node executable during npm install via `process.env.NODE`\n* 2014-11-17 - v1.0.2 - get node executable from `process.env._`\n* 2014-09-03 - v1.0.0 - first major version release\n* 2014-09-02 - v0.3.0 - keep -- in flag names\n* 2014-09-02 - v0.2.0 - cache flags\n* 2014-05-09 - v0.1.0 - initial release\n",
  "readmeFilename": "README.md",
  "repository": {
    "type": "git",
    "url": "git://github.com/tkellen/node-v8flags.git"
  },
  "scripts": {
    "test": "_mocha -R spec test.js"
  },
  "version": "2.1.1"
}
