1.0.2 • Published 4 years ago

read-package v1.0.2

Weekly downloads
2
License
MIT
Repository
github
Last release
4 years ago

read-package Build Status

Reads package.json in the working directory.

Install

$ yarn add read-package

Usage

.
├── foo
│   └── ...
└── bar
    └── package.json
const readPackage = require('read-package')

readPackage('foo')
//=> package.json not found in the current project.

readPackage('bar')
//=> { "name": "fixture", "version": "1.0.0" }

API

readPackage(cwd)

Returns an object or throws an error.

cwd

Type: string Default: process.cwd()

Current working directory.

Related

License

MIT © Bu Kinoshita