New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

crosswalk-app-tools

Package Overview
Dependencies
Maintainers
2
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

crosswalk-app-tools - npm Package Compare versions

Comparing version 0.6.0 to 0.6.1

14

manifest.md

@@ -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 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc