Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ap3

Package Overview
Dependencies
Maintainers
2
Versions
36
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ap3 - npm Package Compare versions

Comparing version 0.2.17 to 0.2.18

8

lib/internal/config.js

@@ -5,3 +5,2 @@ var _ = require("underscore");

var os = require("os");
var min = require("jsonminify");

@@ -98,3 +97,8 @@ var env = process.env;

var data = loadFile(path);
return data ? JSON.parse(min(data)) : {};
if (data) {
return JSON.parse(data.split("\n").filter(function (line) {
return line.trim().indexOf("//") !== 0;
}).join("\n"));
}
return {};
}
{
"name": "ap3",
"version": "0.2.17",
"version": "0.2.18",
"description": "Helper package for Atlassian Plugins 3 add-ons running on Express",

@@ -18,6 +18,5 @@ "dependencies": {

"temp": "~0.5.0",
"adm-zip": "~0.4.3",
"adm-zip": "~0.4.3",
"read": "~1.0.4",
"rimraf": "~2.1.4",
"jsonminify": "~0.1.0",
"open": "~0.0.3"

@@ -24,0 +23,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