deps-no-install
v1.1.2
Published
Add dependencies (latest or specified versions) to the package.json file without installing them. (Original package by Arfeo, all credits goes to him.)
Downloads
3
Maintainers
Readme
deps-no-install
This script adds dependencies (latest or specified versions) to the package.json file skipping the installation process.
Installation
If not using with npx
(see below):
$ npm install deps-no-install [-g]
Usage
Run:
$ deps-no-install [package_file] <dependencies> [target] [--no-overwrite]
or with npx
:
$ npx deps-no-install [package_file] <dependencies> [target] [--no-overwrite]
where dependencies
is the list of dependencies divided by space, and target
is one of the following:
--dev
/--save-dev
/-D
fordevDependencies
--peer
/--save-peer
/-P
forpeerDependencies
--optional
/--save-optional
/-O
foroptionalDependencies
If no target
argument passed, dependencies are written to dependencies
.
If no package_file
argument passed, the script searches for a package.json
file within the current working directory.
Use --no-overwrite
flag to prevent already existing packages in package.json
from being overwritten.
Example:
$ deps-no-install /home/user/project/package.json [email protected] [email protected] redux eslint --dev
or with npx
:
$ npx deps-no-install /home/user/project/package.json [email protected] [email protected] redux eslint --dev