crosswalk-app-tools
Advanced tools
Comparing version 0.6.0 to 0.6.1
@@ -24,14 +24,14 @@ Manifest.json fields | ||
* Extension field `crosswalk_app_version`: Version number, between 1 and 99.99.999 | ||
* Extension field `xwalk_app_version`: Version number, between 1 and 99.99.999 | ||
* Extension field `crosswalk_package_id`: Unique package identifier, e.g. `com.example.foo`. | ||
* Extension field `xwalk_package_id`: Unique package identifier, e.g. `com.example.foo`. | ||
* Extension field `crosswalk_target_platforms`: Target platform, e.g. `android`. At the moment only a single value is supported. | ||
* Extension field `xwalk_target_platforms`: Target platform, e.g. `android`. At the moment only a single value is supported. | ||
* Extension field `crosswalk_android_animatable_view`: Whether to allow zooming the browser view (`true`/`false`). | ||
* Extension field `xwalk_android_animatable_view`: Whether to allow zooming the browser view (`true`/`false`). | ||
* Extension field `crosswalk_android_keep_screen_on`: Whether to keep the screen on while the app is in front (`true`/`false`). | ||
* Extension field `xwalk_android_keep_screen_on`: Whether to keep the screen on while the app is in front (`true`/`false`). | ||
* Extension field `crosswalk_windows_update_id`: Automatically generated identifier for native windows support (work in progress). | ||
* Extension field `xwalk_windows_update_id`: Automatically generated identifier for native windows support (work in progress). | ||
* Extension field `crosswalk_windows_vendor`: Vendor string for native windows support (work in progress). | ||
* Extension field `xwalk_windows_vendor`: Vendor string for native windows support (work in progress). |
{ | ||
"name": "crosswalk-app-tools", | ||
"version": "0.6.0", | ||
"version": "0.6.1", | ||
"description": "An APK packager for the Crosswalk Project -- http://crosswalk-project.org", | ||
@@ -19,2 +19,3 @@ "author": "Robert Staudinger <robert.staudinger@intel.com>", | ||
"adm-zip": "~0.4.4", | ||
"format-json": "~1.0.3", | ||
"https-proxy-agent": "~0.3.5", | ||
@@ -21,0 +22,0 @@ "memorystream": "~0.3.0", |
@@ -7,2 +7,4 @@ // Copyright © 2014 Intel Corporation. All rights reserved. | ||
var FormatJson = require("format-json"); | ||
var CommandParser = require("./CommandParser"); | ||
@@ -214,3 +216,3 @@ var IllegalAccessException = require("./util/exceptions").IllegalAccessException; | ||
var buffer = JSON.stringify({ | ||
var buffer = FormatJson.plain({ | ||
// Standard fields | ||
@@ -263,3 +265,3 @@ "name": packageId, | ||
// Write back | ||
buffer = JSON.stringify(json); | ||
buffer = FormatJson.plain(json); | ||
FS.writeFileSync(this._path, buffer); | ||
@@ -266,0 +268,0 @@ |
Unidentified License
License(Experimental) Something that seems like a license was found, but its contents could not be matched with a known license.
Found 1 instance in 1 package
Unidentified License
License(Experimental) Something that seems like a license was found, but its contents could not be matched with a known license.
Found 1 instance in 1 package
279339
6240
9
+ Addedformat-json@~1.0.3
+ Addedformat-json@1.0.3(transitive)