has-shrinkwrap
v1.0.0
Published
Check if `npm-shrinkwrap.json` is present in the working directory
Downloads
61
Maintainers
Readme
has-shrinkwrap
Check if npm-shrinkwrap.json
is present in the working directory
Installation
npm install --save has-shrinkwrap
Usage
$ tree
.
├── bar
│ ├── npm-shrinkwrap.json
│ └── package.json
└── foo
└── package.json
const hasShrinkwrap = require('has-shrinkwrap');
hasShrinkwrap('foo');
//=> false
hasShrinkwrap('bar');
//=> true
API
hasShrinkwrap([cwd])
Returns a boolean
.
cwd
Type: string
Default: process.cwd()
Current working directory.
Related
- has-lockfile – Detect lockfiles in the working directory
License
MIT © Lufty Wiranda