How to run bin/lint

I have a new mode (SAS) that I’m almost ready to do PR for. I know I need to run the distributed linter in bin/lint but I’m not sure how to accomplish that.
I’m looking for a one-liner (hopefully it is that simple).

I tried ./lint ../mode/sas/sas.js

but it threw the following message:

module.js:327
    throw err;
    ^

Error: Cannot find module 'blint'
    at Function.Module._resolveFilename (module.js:325:15)
    at Function.Module._load (module.js:276:25)
    at Module.require (module.js:353:17)
    at require (internal/module.js:12:17)
    at Object.<anonymous> (/Users/Dean/SAS/CodeMirror/test/lint.js:1:75)
    at Module._compile (module.js:409:26)
    at Object.Module._extensions..js (module.js:416:10)
    at Module.load (module.js:343:32)
    at Function.Module._load (module.js:300:12)
    at Module.require (module.js:353:17)

Thanks,
Jared

You have to install the dependencies.

npm install
bin/lint