Skip to content

Instantly share code, notes, and snippets.

@peutetre
Created August 11, 2015 14:01
Show Gist options
  • Save peutetre/5f548e9d28510e4b7e7b to your computer and use it in GitHub Desktop.
Save peutetre/5f548e9d28510e4b7e7b to your computer and use it in GitHub Desktop.
ionic package.json vs tarifa tarifa.json
{
"name": "myapp",
"version": "1.0.0",
"description": "myApp: An Ionic project",
"dependencies": {
"gulp": "^3.5.6",
"gulp-sass": "^1.3.3",
"gulp-concat": "^2.2.0",
"gulp-minify-css": "^0.3.0",
"gulp-rename": "^1.2.0"
},
"devDependencies": {
"bower": "^1.3.3",
"gulp-util": "^2.2.14",
"shelljs": "^0.3.0"
},
"cordovaPlugins": [
"cordova-plugin-device",
"cordova-plugin-console",
"cordova-plugin-whitelist",
"cordova-plugin-splashscreen",
"com.ionic.keyboard"
],
"cordovaPlatforms": [
"ios",
"android"
]
}
{
"name": "myApp2",
"id": "com.hello",
"description": "",
"version": "0.0.0",
"platforms": [
"[email protected]",
"[email protected]"
],
"configurations": {
"ios": {
"default": {
"id": "com.hello.init",
"product_name": "myApp2_init",
"product_file_name": "myApp2_init"
},
"dev": {
"id": "com.hello.dev",
"product_name": "myApp2_dev",
"product_file_name": "myApp2_dev"
},
"stage": {
"id": "com.hello.stage",
"product_name": "myApp2_stage",
"product_file_name": "myApp2_stage",
"release": true
},
"prod": {
"id": "com.hello.prod",
"product_name": "myApp2_prod",
"product_file_name": "myApp2_prod",
"release": true
}
},
"android": {
"default": {
"id": "com.hello.init",
"product_name": "myApp2_init",
"product_file_name": "myApp2_init"
},
"dev": {
"id": "com.hello.dev",
"product_name": "myApp2_dev",
"product_file_name": "myApp2_dev"
},
"stage": {
"id": "com.hello.stage",
"product_name": "myApp2_stage",
"product_file_name": "myApp2_stage",
"release": true
},
"prod": {
"id": "com.hello.prod",
"product_name": "myApp2_prod",
"product_file_name": "myApp2_prod",
"release": true
}
}
},
"cordova": {
"preferences": {
"DisallowOverscroll": true,
"EnableViewportScale": false,
"KeyboardDisplayRequiresUserAction": false,
"ShowSplashScreenSpinner": false,
"SplashScreen": "screen",
"BackgroundColor": "0xffffffff",
"AutoHideSplashScreen": false,
"KeepRunning": true,
"Orientation": "portrait"
},
"whitelist": {
"shared": [
{
"type": "access-origin",
"origin": [
"*"
]
},
{
"type": "allow-intent",
"origin": [
"http://*/*",
"https://*/*",
"tel:*",
"sms:*",
"mailto:*",
"geo:*"
]
}
],
"android": [
{
"type": "allow-intent",
"origin": [
"market:*"
]
},
{
"type": "allow-navigation",
"origin": [
"*"
]
}
],
"ios": [
{
"type": "allow-intent",
"origin": [
"itms:*",
"itms-apps:*"
]
}
]
}
},
"author": {
"name": "Paul Panserrieu",
"email": "[email protected]",
"href": "http://42loops.com"
},
"check": {
"ios": "./project/bin/check_ios.js",
"android": "./project/bin/check_android.js"
},
"plugins": {
"cordova-plugin-splashscreen": "[email protected]",
"cordova-plugin-whitelist": "[email protected]",
"cordova-plugin-console": "[email protected]",
"cordova-plugin-device": "[email protected]"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment