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

extract metadata and provisioning information about an .ipa file
Inspired by the ipa info in shenzhen, but I wanted more general metadata information about the .ipa.
I created a quick Bash script, but thought I could do a better job with a small NodeJS module.
The CLI is very useful for quickly checking the entitlements of an .ipa file (--verify), and two types will be returned from the module:
See Checking the Entitlements of an .ipa file for more information
Install
$ npm install --save ipa-metadataUsage
var ipaMetadata = require('ipa-metadata');
ipaMetadata('Facebook.ipa', function(data){
console.log(data);
// { metadata:
// { CFBundleName: 'Facebook',
// ... },
// provisioning:
// { TeamName: 'Facebook Inc.',
// ... } },
// entitlements:
// { TeamName: 'Facebook Inc.',
// ... } }
});CLI
$ npm install --global ipa-metadata$ ipa-metadata --help
Example
ipa-metadata Facebook.ipa
ipa-metadata Facebook.ipa --verbose
ipa-metadata Facebook.ipa --verify
(verifies entitlements between `.app` bundle and `embedded.mobileprovision`)License
MIT © Matias Singers