UNPKG

@titanium/sdk-manager

Version:

⭐ Axway Amplify module for managing and installing SDK for Appcelerator Titanium SDK Framework

30 lines (28 loc) 739 B
/** * A list of options that can be changed by the parent program. * @type {object} */ const options = { searchPaths: [], network: { agentOptions: null, caFile: null, certFile: null, httpProxy: null, httpsProxy: null, keyFile: null, passphrase: null, strictSSL: true, }, sdk: { searchPaths: [], urls: { branches: 'http://builds.appcelerator.com/mobile/branches.json', build: 'http://builds.appcelerator.com/mobile/<BRANCH>/<FILENAME>', builds: 'http://builds.appcelerator.com/mobile/<BRANCH>/index.json', releases: 'https://appc-mobilesdk-server.s3-us-west-2.amazonaws.com/releases.json', }, }, module: { searchPaths: [] }, }; module.exports = options;