Skip to content

bukinoshita/read-package

Repository files navigation

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

About

Reads package.json in the working directory

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •