0.0.5 • Published 10 years ago

packlock v0.0.5

Weekly downloads
5
License
ISC
Repository
github
Last release
10 years ago

Lockdown your modules by specifying a list of approved modules and versions (with semver). Packlock will scan against this list and report modules that are unapproved or at an unapproved version.

Usage

Install

npm install -g packlock

Usage:

packlock [options]

Options:

-h, --help             output usage information
-V, --version          output the version number

-s, --scanpath [path]  Directory to scan for packages. Defaults to current directory
-w, --whitelist [path] Location of whitelist. Defaults to current directory
-r, --recurse          Scan transitive dependencies

Example:

packlock -w /our/global/policy.json -s /usr/local/nodeapp/

Specifying the policy

The policy consists of a simple .json file containing modules and versions. Semver is used to check version so you can use ranges etc. as specified on the semver page.

{
    "commander": "^2.2.0",
    "read-installed": "^2.0.3"
}
0.0.5

10 years ago

0.0.4

10 years ago

0.0.3

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago