Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

entitlements

matiassingers2kMIT1.3.0

check the entitlements of a .app bundle

ipa, ios, entitlements, codesign

readme

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

License

MIT © Matias Singers