1.3.0 • Published 6 years ago

entitlements v1.3.0

Weekly downloads
195
License
MIT
Repository
github
Last release
6 years ago

entitlements Build Status Dependency Status

check the entitlements of a .app bundle

Install

$ npm install --save entitlements

Usage

var entitlements = require('entitlements');

entitlements('./Payload/Facebook.app/', function(error, data){
  console.log(data);
  // => { "application-identifier": "com.facebook.facebook",
  //      "get-task-allow": false,
  //      ... }
});

CLI

$ 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,
         ... }

Related

License

MIT © Matias Singers