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

kbme

Package Overview
Dependencies
Maintainers
3
Versions
32
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

kbme - npm Package Compare versions

Comparing version 2.0.4 to 2.1.0

package-lock.json

2

lib/index.js
const got = require('got')
const debug = require('debug')('jql');
const { pad, xtend, date_ago, days_between, num_reducer, replace, generate_dates } = require('./util')

@@ -20,2 +21,3 @@

return async (jql) =>
debug(jql) ||
req(replace(endpoint, {jira, jql}), {

@@ -22,0 +24,0 @@ json: true,

9

package.json
{
"name": "kbme",
"version": "2.0.4",
"version": "2.1.0",
"description": "Gather kanban metrics from your JIRA instance",

@@ -22,8 +22,9 @@ "main": "lib/index.js",

"dependencies": {
"dotenv": "^4.0.0",
"got": "^7.1.0",
"debug": "^3.1.0",
"dotenv": "^5.0.0",
"got": "^8.0.3",
"mri": "^1.1.0"
},
"devDependencies": {
"jest": "^20.0.4"
"jest": "^22.1.4"
},

@@ -30,0 +31,0 @@ "scripts": {

@@ -89,3 +89,8 @@ # kbme

## Debug
Log JQL queries into the console
> `DEBUG=jql kbme`
## Contribute
Feel free to fill an issue and submit a pull request if you find any problems.

@@ -52,3 +52,3 @@ {

"to": "65760",
"toString": "This issue links to \"Bamboo Development Tools › wk-docs › bugfix-ELEMENTS-252-web-components-doesn-t-work (Atlassian Bamboo)\""
"toString": "This issue links to \"ISK › bugfix-ISK-252-web (Atlassian ISK)\""
}

@@ -66,3 +66,3 @@ ]

"to": "65761",
"toString": "This issue links to \"Bamboo SFC - Elements (L1) › app › bugfix-ELEMENTS-252-web-components-doesn-t-work (Atlassian Bamboo)\""
"toString": "This issue links to \"ISK › bugfix-ISK-252-web (Atlassian ISK)\""
}

@@ -186,3 +186,3 @@ ]

"to": "368007",
"toString": "BAMBOO-735"
"toString": "ISK-735"
}

@@ -386,3 +386,3 @@ ]

"to": "368007",
"toString": "BAMBOO-735"
"toString": "ISK-735"
}

@@ -389,0 +389,0 @@ ]

@@ -41,4 +41,4 @@ const { pad, csv, toJSON, date_ago, days_between, num_reducer, replace, generate_dates, format } = require('../lib/util')

const d = new Date()
const date = `${d.getFullYear()}-${pad(d.getMonth()+1)}-${d.getDate()}`
const year = `${d.getFullYear()-1}-${pad(d.getMonth()+1)}-${d.getDate()}`
const date = `${d.getFullYear()}-${pad(d.getMonth()+1)}-${pad(d.getDate())}`
const year = `${d.getFullYear()-1}-${pad(d.getMonth()+1)}-${pad(d.getDate())}`

@@ -69,4 +69,4 @@ test('should return the date string of n days ago', () => {

test('should return the date string of n days ago', () => {
expect([0].reduce(num_reducer), 0).toBe(0)
expect([1,2,3].reduce(num_reducer), 0).toBe(6)
expect([0].reduce(num_reducer, 0)).toBe(0)
expect([1,2,3].reduce(num_reducer, 0)).toBe(6)
})

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