JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 349
  • Score
    100M100P100Q91282F
  • License MIT

extract metadata and provisioning information about an .ipa file

Package Exports

  • ipa-metadata

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 (ipa-metadata) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

ipa-metadata Build Status Dependency Status

extract metadata and provisioning information about an .ipa file

Install

$ npm install --save ipa-metadata

Usage

var ipaMetadata = require('ipa-metadata');

ipaMetadata('Facebook.ipa', function(data){
  console.log(data);
  
  // { metadata: 
  //    { CFBundleName: 'Facebook',
  //      ... },
  //   provisioning:
  //    { TeamName: 'Facebook Inc.',
  //      ... } }
});

CLI

$ npm install --global ipa-metadata
$ ipa-metadata --help

  Example
    ipa-metadata Facebook.ipa
    
    ipa-metadata Facebook.ipa --verbose
    

License

MIT © Matias Singers