13 lines
184 B
Nix

with import <nixpkgs> {};
stdenv.mkDerivation {
name = "node";
buildInputs = [
nodejs-10_x
jq
];
shellHook = ''
alias scripts='jq ".scripts" package.json'
'';
}