package.json 3.9 KB
{
  "_args": [
    [
      {
        "raw": "process@^0.11.1",
        "scope": null,
        "escapedName": "process",
        "name": "process",
        "rawSpec": "^0.11.1",
        "spec": ">=0.11.1 <0.12.0",
        "type": "range"
      },
      "/Users/fzy/project/koa2_Sequelize_project/node_modules/path"
    ]
  ],
  "_from": "process@>=0.11.1 <0.12.0",
  "_id": "process@0.11.10",
  "_inCache": true,
  "_location": "/process",
  "_nodeVersion": "6.10.0",
  "_npmOperationalInternal": {
    "host": "packages-12-west.internal.npmjs.com",
    "tmp": "tmp/process-0.11.10.tgz_1493210065468_0.9640797527972609"
  },
  "_npmUser": {
    "name": "cwmma",
    "email": "calvin.metcalf@gmail.com"
  },
  "_npmVersion": "4.0.5",
  "_phantomChildren": {},
  "_requested": {
    "raw": "process@^0.11.1",
    "scope": null,
    "escapedName": "process",
    "name": "process",
    "rawSpec": "^0.11.1",
    "spec": ">=0.11.1 <0.12.0",
    "type": "range"
  },
  "_requiredBy": [
    "/path"
  ],
  "_resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz",
  "_shasum": "7332300e840161bda3e69a1d1d91a7d4bc16f182",
  "_shrinkwrap": null,
  "_spec": "process@^0.11.1",
  "_where": "/Users/fzy/project/koa2_Sequelize_project/node_modules/path",
  "author": {
    "name": "Roman Shtylman",
    "email": "shtylman@gmail.com"
  },
  "browser": "./browser.js",
  "bugs": {
    "url": "https://github.com/shtylman/node-process/issues"
  },
  "dependencies": {},
  "description": "process information for node.js and browsers",
  "devDependencies": {
    "mocha": "2.2.1",
    "zuul": "^3.10.3"
  },
  "directories": {},
  "dist": {
    "shasum": "7332300e840161bda3e69a1d1d91a7d4bc16f182",
    "tarball": "https://registry.npmjs.org/process/-/process-0.11.10.tgz"
  },
  "engines": {
    "node": ">= 0.6.0"
  },
  "gitHead": "557aa46f283caccce603dbb9c376b3d81067c510",
  "homepage": "https://github.com/shtylman/node-process#readme",
  "keywords": [
    "process"
  ],
  "license": "MIT",
  "main": "./index.js",
  "maintainers": [
    {
      "name": "coolaj86",
      "email": "coolaj86@gmail.com"
    },
    {
      "name": "cwmma",
      "email": "calvin.metcalf@gmail.com"
    },
    {
      "name": "defunctzombie",
      "email": "shtylman@gmail.com"
    }
  ],
  "name": "process",
  "optionalDependencies": {},
  "readme": "# process\n\n```require('process');``` just like any other module.\n\nWorks in node.js and browsers via the browser.js shim provided with the module.\n\n## browser implementation\n\nThe goal of this module is not to be a full-fledged alternative to the builtin process module. This module mostly exists to provide the nextTick functionality and little more. We keep this module lean because it will often be included by default by tools like browserify when it detects a module has used the `process` global.\n\nIt also exposes a \"browser\" member (i.e. `process.browser`) which is `true` in this implementation but `undefined` in node. This can be used in isomorphic code that adjusts it's behavior depending on which environment it's running in. \n\nIf you are looking to provide other process methods, I suggest you monkey patch them onto the process global in your app. A list of user created patches is below.\n\n* [hrtime](https://github.com/kumavis/browser-process-hrtime)\n* [stdout](https://github.com/kumavis/browser-stdout)\n\n## package manager notes\n\nIf you are writing a bundler to package modules for client side use, make sure you use the ```browser``` field hint in package.json.\n\nSee https://gist.github.com/4339901 for details.\n\nThe [browserify](https://github.com/substack/node-browserify) module will properly handle this field when bundling your files.\n\n\n",
  "readmeFilename": "README.md",
  "repository": {
    "type": "git",
    "url": "git://github.com/shtylman/node-process.git"
  },
  "scripts": {
    "browser": "zuul --no-coverage --ui mocha-bdd --local 8080 -- test.js",
    "test": "mocha test.js"
  },
  "version": "0.11.10"
}