Run npm install (#43)
All checks were successful
Lint / pre-commit Linting (push) Successful in 1m18s

Reviewed-on: #43
This commit was merged in pull request #43.
This commit is contained in:
2025-12-16 01:07:55 +01:00
parent 9510650dd1
commit 74d74b73ad
614 changed files with 6056 additions and 159231 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');
});