iandelduca 3.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.js +27 -0
  2. package/package.json +19 -0
package/index.js ADDED
@@ -0,0 +1,27 @@
1
+ #!/usr/bin/env node
2
+
3
+ const blue = "\x1b[34m\x1b[1m";
4
+ const red = "\x1b[31m\x1b[1m";
5
+ const nc = "\x1b[0m";
6
+ const newLine = "\n";
7
+
8
+ const data = [
9
+ newLine + blue + "Ian Del Duca" + nc,
10
+ blue +
11
+ "Full-stack Web Developer, Frontend/React Specialist, Javascript Enthusiast, Agile Consultant, All around swell guy." +
12
+ nc +
13
+ newLine,
14
+ red + "Email: ianmdelduca@gmail.com",
15
+ "Website: https://www.iandelduca.com/",
16
+ "Github: LlanddewiLovesYou@github.com",
17
+
18
+ "LinkedIn: https://www.linkedin.com/in/ian-del-duca-a6a90285/" + nc + newLine,
19
+ blue +
20
+ "Thank you so much for installing me on your machine! Get in touch, I'd love to hear from you!" +
21
+ nc +
22
+ newLine,
23
+ ];
24
+
25
+ data.forEach((line) => {
26
+ console.log(line);
27
+ });
package/package.json ADDED
@@ -0,0 +1,19 @@
1
+ {
2
+ "name": "iandelduca",
3
+ "version": "3.0.0",
4
+ "description": "npm business card in the terminal",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1"
8
+ },
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/LlanddewiLovesYou/iandelduca.git"
12
+ },
13
+ "author": "Ian Del Duca",
14
+ "license": "ISC",
15
+ "bugs": {
16
+ "url": "https://github.com/LlanddewiLovesYou/iandelduca/issues"
17
+ },
18
+ "homepage": "https://github.com/LlanddewiLovesYou/iandelduca#readme"
19
+ }