#!/usr/bin/env bash

BP=$(dirname "$(dirname $0)")
if [ -f "$1/package.json" ]; then
  echo "node.js "$(cat "$BP/VERSION")""
  exit 0
fi

exit 1
