Check if a
package-lock.jsonis present in the working directory
npm install has-package-lock$ tree
.
├── bar
│ ├── package-lock.json
│ └── package.json
└── foo
└── package.jsonconst hasPackageLock = require('has-package-lock');
hasPackageLock('bar');
//=> true
hasPackageLock('foo');
//=> falseReturns boolean.
Type: string
Default: process.cwd()
Current working directory.
- has-lockfile - Check which lockfile is present in the working directory
- has-yarn - Check if a project is using Yarn
- pkg-man - Detect which package manager that should be used
MIT © Lufty Wiranda