pax_global_header00006660000000000000000000000064127771201020014511gustar00rootroot0000000000000052 comment=3b8a594ab581f000f705e43e8abdb1a23e8822f2 read-pkg-up-2.0.0/000077500000000000000000000000001277712010200136245ustar00rootroot00000000000000read-pkg-up-2.0.0/.editorconfig000066400000000000000000000002761277712010200163060ustar00rootroot00000000000000root = true [*] indent_style = tab end_of_line = lf charset = utf-8 trim_trailing_whitespace = true insert_final_newline = true [{package.json,*.yml}] indent_style = space indent_size = 2 read-pkg-up-2.0.0/.gitattributes000066400000000000000000000000351277712010200165150ustar00rootroot00000000000000* text=auto *.js text eol=lf read-pkg-up-2.0.0/.gitignore000066400000000000000000000000151277712010200156100ustar00rootroot00000000000000node_modules read-pkg-up-2.0.0/.travis.yml000066400000000000000000000000531277712010200157330ustar00rootroot00000000000000language: node_js node_js: - '6' - '4' read-pkg-up-2.0.0/fixture/000077500000000000000000000000001277712010200153125ustar00rootroot00000000000000read-pkg-up-2.0.0/fixture/.gitkeep000066400000000000000000000000001277712010200167310ustar00rootroot00000000000000read-pkg-up-2.0.0/index.js000066400000000000000000000006601277712010200152730ustar00rootroot00000000000000'use strict'; const findUp = require('find-up'); const readPkg = require('read-pkg'); module.exports = opts => { return findUp('package.json', opts).then(fp => { if (!fp) { return {}; } return readPkg(fp, opts).then(pkg => ({pkg, path: fp})); }); }; module.exports.sync = opts => { const fp = findUp.sync('package.json', opts); if (!fp) { return {}; } return { pkg: readPkg.sync(fp, opts), path: fp }; }; read-pkg-up-2.0.0/license000066400000000000000000000021371277712010200151740ustar00rootroot00000000000000The MIT License (MIT) Copyright (c) Sindre Sorhus (sindresorhus.com) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. read-pkg-up-2.0.0/package.json000066400000000000000000000016761277712010200161240ustar00rootroot00000000000000{ "name": "read-pkg-up", "version": "2.0.0", "description": "Read the closest package.json file", "license": "MIT", "repository": "sindresorhus/read-pkg-up", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, "engines": { "node": ">=4" }, "scripts": { "test": "xo && ava" }, "files": [ "index.js" ], "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" ], "dependencies": { "find-up": "^2.0.0", "read-pkg": "^2.0.0" }, "devDependencies": { "ava": "*", "xo": "*" }, "xo": { "esnext": true } } read-pkg-up-2.0.0/readme.md000066400000000000000000000034131277712010200154040ustar00rootroot00000000000000# read-pkg-up [![Build Status](https://travis-ci.org/sindresorhus/read-pkg-up.svg?branch=master)](https://travis-ci.org/sindresorhus/read-pkg-up) > Read the closest package.json file ## Why - [Finds the closest package.json](https://github.com/sindresorhus/find-up) - [Gracefully handles filesystem issues](https://github.com/isaacs/node-graceful-fs) - [Strips UTF-8 BOM](https://github.com/sindresorhus/strip-bom) - [Throws more helpful JSON errors](https://github.com/sindresorhus/parse-json) - [Normalizes the data](https://github.com/npm/normalize-package-data#what-normalization-currently-entails) ## Install ``` $ npm install --save read-pkg-up ``` ## Usage ```js const readPkgUp = require('read-pkg-up'); readPkgUp().then(result => { console.log(result); /* { pkg: { name: 'awesome-package', version: '1.0.0', ... }, path: '/Users/sindresorhus/dev/awesome-package/package.json' } */ }); ``` ## API ### readPkgUp([options]) Returns a `Promise` for the result object. ### readPkgUp.sync([options]) Returns the result object. #### options ##### cwd Type: `string`
Default: `.` Directory to start looking for a package.json file. ##### normalize Type: `boolean`
Default: `true` [Normalize](https://github.com/npm/normalize-package-data#what-normalization-currently-entails) the package data. ## Related - [read-pkg](https://github.com/sindresorhus/read-pkg) - Read a package.json file - [pkg-up](https://github.com/sindresorhus/pkg-up) - Find the closest package.json file - [find-up](https://github.com/sindresorhus/find-up) - Find a file by walking up parent directories - [pkg-conf](https://github.com/sindresorhus/pkg-conf) - Get namespaced config from the closest package.json ## License MIT © [Sindre Sorhus](https://sindresorhus.com) read-pkg-up-2.0.0/test.js000066400000000000000000000005621277712010200151440ustar00rootroot00000000000000import path from 'path'; import test from 'ava'; import m from './'; const cwd = 'fixture'; const pkgPath = path.resolve('.', 'package.json'); test('async', async t => { const x = await m({cwd}); t.is(x.pkg.name, 'read-pkg-up'); t.is(x.path, pkgPath); }); test('sync', t => { const x = m.sync({cwd}); t.is(x.pkg.name, 'read-pkg-up'); t.is(x.path, pkgPath); });