#!/usr/bin/env bash
# bin/detect <build-dir>

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

exit 1
