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

@zaneray/bitbucket

Package Overview
Dependencies
Maintainers
0
Versions
31
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@zaneray/bitbucket - npm Package Compare versions

Comparing version 1.3.4 to 1.3.5-2

.node-version

6

lib/index.js

@@ -1,3 +0,3 @@

class Bitbucket {
#url = "https://api.bitbucket.org/2.0";
class Jira {
#url = "https://zaneray.atlassian.net/rest/api/3";
//conforming to HTTP Basic Auth credentials (base64 encoded `username:password`)

@@ -100,2 +100,2 @@ #key;

}
module.exports = Bitbucket;
module.exports = Jira;
{
"name": "@zaneray/bitbucket",
"version": "1.3.4",
"version": "1.3.5-2",
"description": "",

@@ -5,0 +5,0 @@ "main": "lib/index.js",

@@ -1,3 +0,10 @@

const deploy = require('../lib/deploy');
const env = require('@zaneray/node-env');
const JIRA_API_KEY = env.get('JIRA_API_KEY');
const Jira = require('../lib/index.js');
const jira = new Jira(JIRA_API_KEY);
module.exports = {deploy};
async function testProjects() {
let projects = await jira.get('/project');
console.log(projects);
}
testProjects();

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