JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 8610064
  • Score
    100M100P100Q13817F
  • License MIT

Find the closest package.json file

Package Exports

  • pkg-up

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (pkg-up) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

pkg-up Build Status

Find the closest package.json file

Install

$ npm install --save pkg-up

Usage

/
└── Users
    └── sindresorhus
        └── foo
            ├── package.json
            └── bar
                ├── baz
                └── example.js
// example.js
const pkgUp = require('pkg-up');

pkgUp().then(filepath => {
    console.log(filepath);
    //=> '/Users/sindresorhus/foo/package.json'
});

API

pkgUp([cwd])

Returns a Promise for either the filepath or null if it could be found.

pkgUp.sync([cwd])

Returns the filepath or null.

cwd

Type: string Default: process.cwd()

Directory to start from.

  • read-pkg-up - Read the closest package.json file
  • pkg-dir - Find the root directory of an npm package
  • find-up - Find a file by walking up parent directories

License

MIT © Sindre Sorhus