Dep update

This commit is contained in:
2025-04-08 22:00:41 +02:00
committed by Philipp Horstenkamp
parent f79e41cbfe
commit 78549e06b4
966 changed files with 43637 additions and 158248 deletions

View File

@ -1,8 +0,0 @@
{
"name": "beep-boop",
"version": "1.2.3",
"repository" : {
"type" : "git",
"url": "git@github.com:substack/beep-boop.git"
}
}

View File

@ -1,5 +0,0 @@
{
"name": "beep-boop",
"version": "1.2.3",
"repository" : "git@github.com:substack/beep-boop.git"
}

View File

@ -1,5 +0,0 @@
{
"name": "beep-boop",
"version": "1.2.3",
"repository" : "https://github.com/substack/beep-boop.git"
}

View File

@ -1,7 +0,0 @@
{
"name": "beep-boop",
"version": "1.2.3",
"repository" : {
"url": "https://github.com/substack/beep-boop"
}
}

View File

@ -1,5 +0,0 @@
{
"name": "beep-boop",
"version": "1.2.3",
"homepage": "https://github.com/substack/beep-boop/issues"
}

View File

@ -1,19 +0,0 @@
var test = require('tape');
var github = require('../');
var packages = {
a : require('./a.json'),
b : require('./b.json'),
c : require('./c.json'),
d : require('./d.json'),
e : require('./e.json')
};
test(function (t) {
t.plan(5);
var url = 'https://github.com/substack/beep-boop';
t.equal(url, github(packages.a), 'a.json comparison');
t.equal(url, github(packages.b), 'b.json comparison');
t.equal(url, github(packages.c), 'c.json comparison');
t.equal(url, github(packages.d), 'd.json comparison');
t.equal(url, github(packages.e), 'e.json comparison');
});