{
  "_args": [
    [
      {
        "raw": "callsites@^0.2.0",
        "scope": null,
        "escapedName": "callsites",
        "name": "callsites",
        "rawSpec": "^0.2.0",
        "spec": ">=0.2.0 <0.3.0",
        "type": "range"
      },
      "/home/travis/build/lukesargeant/ember-sparkline/node_modules/caller-path"
    ]
  ],
  "_from": "callsites@>=0.2.0 <0.3.0",
  "_id": "callsites@0.2.0",
  "_inCache": true,
  "_location": "/callsites",
  "_npmUser": {
    "name": "sindresorhus",
    "email": "sindresorhus@gmail.com"
  },
  "_npmVersion": "1.4.6",
  "_phantomChildren": {},
  "_requested": {
    "raw": "callsites@^0.2.0",
    "scope": null,
    "escapedName": "callsites",
    "name": "callsites",
    "rawSpec": "^0.2.0",
    "spec": ">=0.2.0 <0.3.0",
    "type": "range"
  },
  "_requiredBy": [
    "/caller-path"
  ],
  "_resolved": "https://registry.npmjs.org/callsites/-/callsites-0.2.0.tgz",
  "_shasum": "afab96262910a7f33c19a5775825c69f34e350ca",
  "_shrinkwrap": null,
  "_spec": "callsites@^0.2.0",
  "_where": "/home/travis/build/lukesargeant/ember-sparkline/node_modules/caller-path",
  "author": {
    "name": "Sindre Sorhus",
    "email": "sindresorhus@gmail.com",
    "url": "http://sindresorhus.com"
  },
  "bugs": {
    "url": "https://github.com/sindresorhus/callsites/issues"
  },
  "dependencies": {},
  "description": "Get callsites from the V8 stack trace API",
  "devDependencies": {
    "mocha": "*"
  },
  "directories": {},
  "dist": {
    "shasum": "afab96262910a7f33c19a5775825c69f34e350ca",
    "tarball": "https://registry.npmjs.org/callsites/-/callsites-0.2.0.tgz"
  },
  "engines": {
    "node": ">=0.10.0"
  },
  "files": [
    "index.js"
  ],
  "homepage": "https://github.com/sindresorhus/callsites#readme",
  "keywords": [
    "callsites",
    "callsite",
    "v8",
    "stacktrace",
    "stack",
    "trace",
    "function",
    "file",
    "line",
    "debug"
  ],
  "license": "MIT",
  "maintainers": [
    {
      "name": "sindresorhus",
      "email": "sindresorhus@gmail.com"
    }
  ],
  "name": "callsites",
  "optionalDependencies": {},
  "readme": "# callsites [![Build Status](https://travis-ci.org/sindresorhus/callsites.svg?branch=master)](https://travis-ci.org/sindresorhus/callsites)\n\n> Get callsites from the [V8 stack trace API](https://code.google.com/p/v8/wiki/JavaScriptStackTraceApi)\n\n\n## Install\n\n```sh\n$ npm install --save callsites\n```\n\n\n## Usage\n\n```js\nvar callsites = require('callsites');\n\nfunction unicorn() {\n\tconsole.log(callsites()[0].getFileName());\n\t//=> /Users/sindresorhus/dev/callsites/test.js\n}\n\nunicorn();\n```\n\n## API\n\nReturns an array of callsite objects with the following methods:\n\n- `getThis`: returns the value of this\n- `getTypeName`: returns the type of this as a string. This is the name of the function stored in the constructor field of this, if available, otherwise the object's [[Class]] internal property.\n- `getFunction`: returns the current function\n- `getFunctionName`: returns the name of the current function, typically its name property. If a name property is not available an attempt will be made to try to infer a name from the function's context.\n- `getMethodName`: returns the name of the property of this or one of its prototypes that holds the current function\n- `getFileName`: if this function was defined in a script returns the name of the script\n- `getLineNumber`: if this function was defined in a script returns the current line number\n- `getColumnNumber`: if this function was defined in a script returns the current column number\n- `getEvalOrigin`: if this function was created using a call to eval returns a CallSite object representing the location where eval was called\n- `isToplevel`: is this a toplevel invocation, that is, is this the global object?\n- `isEval`: does this call take place in code defined by a call to eval?\n- `isNative`: is this call in native V8 code?\n- `isConstructor`: is this a constructor call?\n\n\n## License\n\nMIT © [Sindre Sorhus](http://sindresorhus.com)\n",
  "readmeFilename": "readme.md",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/sindresorhus/callsites.git"
  },
  "scripts": {
    "test": "mocha"
  },
  "version": "0.2.0"
}
