UNPKG

644 BJSONView Raw
1{
2 "title": "Run Script",
3 "description": "Run any NPM script of a project in the project's root directory.",
4 "type": "object",
5 "cli": "nx",
6 "outputCapture": "pipe",
7 "properties": {
8 "script": {
9 "type": "string",
10 "description": "An npm script name in the `package.json` file of the project (e.g., `build`)."
11 },
12 "__unparsed__": {
13 "hidden": true,
14 "type": "array",
15 "items": {
16 "type": "string"
17 },
18 "$default": {
19 "$source": "unparsed"
20 }
21 }
22 },
23 "additionalProperties": true,
24 "required": ["script"],
25 "examplesFile": "../../../docs/run-script-examples.md"
26}