check the entitlements of a .app bundle
$ npm install --save entitlements
var entitlements = require('entitlements');
entitlements('./Payload/Facebook.app/', function(error, data){
console.log(data);
// => { "application-identifier": "com.facebook.facebook",
// "get-task-allow": false,
// ... }
});
$ npm install --global entitlements
$ entitlements --help
check the entitlements of a .app bundle
Example
entitlements ./Payload/Facebook.app/
=> { "application-identifier": "com.facebook.facebook",
"get-task-allow":false,
... }
MIT © Matias Singers