my-first-npm-module-speedyforce
Advanced tools
Comparing version 1.0.1 to 1.0.2
#!/usr/bin/env node | ||
console.log(`Hello, ${process.argv[2] || 'someone'}!`); | ||
console.log(`Hello, ${process.argv[3] || 'someone'}!`); |
{ | ||
"name": "my-first-npm-module-speedyforce", | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"description": "Testing module system for Node.js 2018 :)", | ||
@@ -9,5 +9,7 @@ "main": "index.js", | ||
}, | ||
"bin": "./index.js", | ||
"bin": { | ||
"hello": "./index.js" | ||
}, | ||
"author": "Deividy Metheler Zachetti", | ||
"license": "UNLICENSED" | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
457