27 lines
381 B
Nix
27 lines
381 B
Nix
{
|
|
name = "uses-hjq";
|
|
|
|
description = "A test scroll that mimicks hjq's behavior";
|
|
|
|
inputs = {
|
|
stdin = {
|
|
format = "HJSON";
|
|
react = "push";
|
|
};
|
|
jqFilter = {
|
|
format = "string";
|
|
react = "push";
|
|
};
|
|
};
|
|
|
|
outputs = {
|
|
stdout = {
|
|
format = "HJSON";
|
|
react = "push";
|
|
};
|
|
};
|
|
|
|
build = {
|
|
lockFile = ./deno.lock;
|
|
};
|
|
}
|