🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@voyagier/test

Package Overview
Dependencies
Maintainers
2
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@voyagier/test - npm Package Compare versions

Package was removed
Sorry, it seems this package was removed from the registry
Comparing version
1.0.0
to
1.3.0
+14
.github/workflows/publish-to-npm.yaml
name: Publish to NPM
on:
workflow_dispatch:
permissions:
contents: write
id-token: write
jobs:
publish:
uses: Voyagier-Travel/voyagier-workflows/.github/workflows/publish-to-npm.yaml@main
with:
access: public
secrets: inherit
+12
-2

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

module.exports = function greet(name) {
function greet(name) {
return `Hello, ${name}!`;
};
}
function sum(a, b) {
return a + b;
}
function capitalize(str) {
return str.charAt(0).toUpperCase() + str.slice(1);
}
module.exports = { greet, sum, capitalize };
+1
-1
{
"name": "@voyagier/test",
"version": "1.0.0",
"version": "1.3.0",
"description": "Voyagier Test",

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