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

@smartface/marketplace-service

Package Overview
Dependencies
Maintainers
7
Versions
61
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@smartface/marketplace-service - npm Package Compare versions

Comparing version 1.0.12 to 1.0.13

2

package.json
{
"name": "@smartface/marketplace-service",
"version": "1.0.12",
"version": "1.0.13",
"description": "",

@@ -5,0 +5,0 @@ "main": "marketplace-service.js",

@@ -11,3 +11,3 @@ const fs = require("fs");

module.exports = (opt, cb) => {
var _packageName;
var _packageName, __assetJSON;
series({

@@ -18,3 +18,4 @@ taskEmpty: cb => {

try {
_packageName = JSON.parse(data).name;
__assetJSON = JSON.parse(data);
_packageName = __assetJSON.name;
cb();

@@ -24,2 +25,9 @@ }

});
},
taskWriteInstalledDate: cb => {
__assetJSON.installedDate = new Date().toUTCString();
fs.writeFile(
path.join(opt.packageFolder, "asset.json"),
JSON.stringify(__assetJSON, null, "\t"),
cb);
}

@@ -26,0 +34,0 @@ }, (err, res) => {

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