Npm Command
data class NpmCommand(@Json(name = "command" ) val command: String, @Json(name = "arguments" ) val arguments: List<String>? = null)
The command run on an npm build.
Parameters
command
The command that was run (e.g. in \"npm install\", this would be \"install\").
arguments
The arguments passed to the command (e.g. in \"npm run script.js\", this would be \"script.js\").