{ "_args": [ [ { "raw": "read-pkg-up@^2.0.0", "scope": null, "escapedName": "read-pkg-up", "name": "read-pkg-up", "rawSpec": "^2.0.0", "spec": ">=2.0.0 <3.0.0", "type": "range" }, "/home/jdaugherty/work/GT2/GT2-Android/node_modules/yargs" ] ], "_from": "read-pkg-up@>=2.0.0 <3.0.0", "_id": "read-pkg-up@2.0.0", "_inCache": true, "_location": "/read-pkg-up", "_nodeVersion": "4.6.0", "_npmOperationalInternal": { "host": "packages-12-west.internal.npmjs.com", "tmp": "tmp/read-pkg-up-2.0.0.tgz_1476173892380_0.9843513397499919" }, "_npmUser": { "name": "sindresorhus", "email": "sindresorhus@gmail.com" }, "_npmVersion": "2.15.9", "_phantomChildren": {}, "_requested": { "raw": "read-pkg-up@^2.0.0", "scope": null, "escapedName": "read-pkg-up", "name": "read-pkg-up", "rawSpec": "^2.0.0", "spec": ">=2.0.0 <3.0.0", "type": "range" }, "_requiredBy": [ "/metro/yargs", "/react-native/yargs", "/yargs" ], "_resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-2.0.0.tgz", "_shasum": "6b72a8048984e0c41e79510fd5e9fa99b3b549be", "_shrinkwrap": null, "_spec": "read-pkg-up@^2.0.0", "_where": "/home/jdaugherty/work/GT2/GT2-Android/node_modules/yargs", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, "bugs": { "url": "https://github.com/sindresorhus/read-pkg-up/issues" }, "dependencies": { "find-up": "^2.0.0", "read-pkg": "^2.0.0" }, "description": "Read the closest package.json file", "devDependencies": { "ava": "*", "xo": "*" }, "directories": {}, "dist": { "shasum": "6b72a8048984e0c41e79510fd5e9fa99b3b549be", "tarball": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-2.0.0.tgz" }, "engines": { "node": ">=4" }, "files": [ "index.js" ], "gitHead": "3b8a594ab581f000f705e43e8abdb1a23e8822f2", "homepage": "https://github.com/sindresorhus/read-pkg-up#readme", "keywords": [ "json", "read", "parse", "file", "fs", "graceful", "load", "pkg", "package", "find", "up", "find-up", "findup", "look-up", "look", "file", "search", "match", "package", "resolve", "parent", "parents", "folder", "directory", "dir", "walk", "walking", "path" ], "license": "MIT", "maintainers": [ { "name": "sindresorhus", "email": "sindresorhus@gmail.com" } ], "name": "read-pkg-up", "optionalDependencies": {}, "readme": "# read-pkg-up [![Build Status](https://travis-ci.org/sindresorhus/read-pkg-up.svg?branch=master)](https://travis-ci.org/sindresorhus/read-pkg-up)\n\n> Read the closest package.json file\n\n\n## Why\n\n- [Finds the closest package.json](https://github.com/sindresorhus/find-up)\n- [Gracefully handles filesystem issues](https://github.com/isaacs/node-graceful-fs)\n- [Strips UTF-8 BOM](https://github.com/sindresorhus/strip-bom)\n- [Throws more helpful JSON errors](https://github.com/sindresorhus/parse-json)\n- [Normalizes the data](https://github.com/npm/normalize-package-data#what-normalization-currently-entails)\n\n\n## Install\n\n```\n$ npm install --save read-pkg-up\n```\n\n\n## Usage\n\n```js\nconst readPkgUp = require('read-pkg-up');\n\nreadPkgUp().then(result => {\n\tconsole.log(result);\n\t/*\n\t{\n\t\tpkg: {\n\t\t\tname: 'awesome-package',\n\t\t\tversion: '1.0.0',\n\t\t\t...\n\t\t},\n\t\tpath: '/Users/sindresorhus/dev/awesome-package/package.json'\n\t}\n\t*/\n});\n```\n\n\n## API\n\n### readPkgUp([options])\n\nReturns a `Promise` for the result object.\n\n### readPkgUp.sync([options])\n\nReturns the result object.\n\n#### options\n\n##### cwd\n\nType: `string`
\nDefault: `.`\n\nDirectory to start looking for a package.json file.\n\n##### normalize\n\nType: `boolean`
\nDefault: `true`\n\n[Normalize](https://github.com/npm/normalize-package-data#what-normalization-currently-entails) the package data.\n\n\n## Related\n\n- [read-pkg](https://github.com/sindresorhus/read-pkg) - Read a package.json file\n- [pkg-up](https://github.com/sindresorhus/pkg-up) - Find the closest package.json file\n- [find-up](https://github.com/sindresorhus/find-up) - Find a file by walking up parent directories\n- [pkg-conf](https://github.com/sindresorhus/pkg-conf) - Get namespaced config from the closest package.json\n\n\n## License\n\nMIT © [Sindre Sorhus](https://sindresorhus.com)\n", "readmeFilename": "readme.md", "repository": { "type": "git", "url": "git+https://github.com/sindresorhus/read-pkg-up.git" }, "scripts": { "test": "xo && ava" }, "version": "2.0.0", "xo": { "esnext": true } }