Lines Matching full:scripts
4 description: Run arbitrary package scripts
9 ## Run arbitrary package scripts
21 This runs an arbitrary command from a package's `"scripts"` object. If no
22 `"command"` is provided, it will list the available scripts. `run[-script]` is
24 directly, as well. When the scripts in the package are printed out, they're
25 separated into lifecycle (test, start, restart) and directly-run scripts.
28 use custom arguments when executing scripts. The special option `--` is used by
45 `node_modules/.bin` to the `PATH` provided to scripts. Any binaries provided by
51 "scripts": {"test": "tap test/\*.js"}
57 "scripts": {"test": "node_modules/.bin/tap test/\*.js"}
68 Scripts are run from the root of the module, regardless of what your current
75 which `npm` is executed. Also, if the `--scripts-prepend-node-path` is passed,
77 `PATH`. If `--scripts-prepend-node-path=auto` is passed (which has been the
87 when the script is undefined. This lets you run potentially undefined scripts
92 * [npm scripts](/using-npm/scripts)