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

cf-deployment-tracker-client

Package Overview
Dependencies
Maintainers
4
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cf-deployment-tracker-client - npm Package Compare versions

Comparing version 0.1.1 to 0.1.2

3

package.json
{
"name": "cf-deployment-tracker-client",
"version": "0.1.1",
"version": "0.1.2",
"private": false,

@@ -11,2 +11,3 @@ "main": "tracker.js",

"dependencies": {
"cwd": "^0.10.0",
"restler": "3.3.0"

@@ -13,0 +14,0 @@ },

@@ -0,0 +0,0 @@ # Overview

@@ -6,7 +6,14 @@ // Licensed under the Apache 2.0 License. See footer for details.

var restler = require('restler'),
path = require('path');
path = require('path'),
cwd = require('cwd');
function track() {
var pkg = require(path.join(path.dirname(module.parent.filename), 'package.json')),
vcapApplication,
var pkg = null;
try {
pkg = require(path.join(cwd(), 'package.json'));
}
catch(ex) {
// package.json could not be loaded from the cwd
}
var vcapApplication,
vcapServices;

@@ -18,3 +25,3 @@

if (vcapApplication) {
if ((vcapApplication) && (pkg)) {
var event = {

@@ -21,0 +28,0 @@ date_sent: new Date().toJSON()

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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