Lines Matching full:scripts
4 description: Run arbitrary package scripts
17 This runs an arbitrary command from a package's `"scripts"` object. If no
18 `"command"` is provided, it will list the available scripts.
21 can be called directly, as well. When the scripts in the package are
23 directly-run scripts.
43 `node_modules/.bin` to the `PATH` provided to scripts. Any binaries
49 "scripts": {"test": "tap test/*.js"}
55 "scripts": {"test": "node_modules/.bin/tap test/*.js"}
65 Scripts are run from the root of the package folder, regardless of what the
82 arbitrary command from a package's `"scripts"` object in the context of the
84 scripts for each of these configured workspaces.
199 for a script that isn't defined in the `scripts` section of `package.json`.
202 running scripts that may only apply for some builds in an otherwise generic
207 #### `ignore-scripts`
212 If true, npm does not run scripts specified in package.json files.
216 will still run their intended script if `ignore-scripts` is set, but they
217 will *not* run any pre- or post-scripts.
221 #### `foreground-scripts`
227 Run all build scripts (ie, `preinstall`, `install`, and `postinstall`)
228 scripts for installed packages in the foreground process, sharing standard
241 The shell to use for scripts run with the `npm exec`, `npm run` and `npm
248 * [npm scripts](/using-npm/scripts)