Package Exports
- run-applescript
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (run-applescript) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
run-applescript 
Run AppleScript and get the result
Install
$ npm install --save run-applescript
Usage
var runApplescript = require('run-applescript');
runApplescript('return "unicorn"', function (err, result) {
console.log(result);
//=> unicorn
});
License
MIT © Sindre Sorhus