eswat42 2.1.101 → 2.1.103
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.
- package/bin/output +1 -0
- package/package.json +17 -13
package/bin/output
CHANGED
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
│ [37m[1m [22m[32m [90mMentor[32m │
|
|
13
13
|
│ [37m[1m [22m[32m [90mProblem Solver[32m │
|
|
14
14
|
│ [37m[1m [22m[32m [90mProgrammer[32m │
|
|
15
|
+
│ [37m[1m [22m[32m [90mSoftware Entomologist[32m │
|
|
15
16
|
│ [37m[1m [22m[32m [90mTinkerer[32m │
|
|
16
17
|
│ [37m[1m company:[22m[32m [37m[3mdeepImpact...[23m[32m │
|
|
17
18
|
│ [37m[1m gitHub:[22m[32m [90mhttps://github.com/[32m[36meswat42[32m │
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eswat42",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.103",
|
|
4
4
|
"description": "A personal card for Richard Hess (@eswat42)",
|
|
5
5
|
"main": "/bin/card.js",
|
|
6
6
|
"bin": {
|
|
@@ -10,16 +10,6 @@
|
|
|
10
10
|
"type": "git",
|
|
11
11
|
"url": "https://github.com/eswat2/eswat42.git"
|
|
12
12
|
},
|
|
13
|
-
"scripts": {
|
|
14
|
-
"prepare": "yarn build",
|
|
15
|
-
"build": "node build.mjs",
|
|
16
|
-
"dev": "yarn build && node ./bin/card.js",
|
|
17
|
-
"predeploy": "yarn dev",
|
|
18
|
-
"deploy": "yarn publish --patch",
|
|
19
|
-
"lint": "standard",
|
|
20
|
-
"test": "echo \"Error: no test specified\" && exit 1",
|
|
21
|
-
"open": "npx eswat42@latest"
|
|
22
|
-
},
|
|
23
13
|
"keywords": [
|
|
24
14
|
"card",
|
|
25
15
|
"npm",
|
|
@@ -36,7 +26,21 @@
|
|
|
36
26
|
],
|
|
37
27
|
"devDependencies": {
|
|
38
28
|
"boxen": "8.0.1",
|
|
29
|
+
"bumpp": "10.4.0",
|
|
30
|
+
"only-allow": "1.2.2",
|
|
39
31
|
"picocolors": "1.1.1",
|
|
40
|
-
"standard": "17.1.2"
|
|
32
|
+
"standard": "17.1.2",
|
|
33
|
+
"yoctocolors": "2.1.2"
|
|
34
|
+
},
|
|
35
|
+
"scripts": {
|
|
36
|
+
"bump": "bumpp patch --yes",
|
|
37
|
+
"card": "node ./bin/card.js",
|
|
38
|
+
"release": "pnpm bump && pnpm build && pnpm card && pnpm publish",
|
|
39
|
+
"preinstall": "npx only-allow pnpm",
|
|
40
|
+
"build": "node build.mjs",
|
|
41
|
+
"dev": "pnpm build && pnpm card",
|
|
42
|
+
"lint": "standard",
|
|
43
|
+
"test": "echo skipping tests...",
|
|
44
|
+
"open": "npx eswat42@latest"
|
|
41
45
|
}
|
|
42
|
-
}
|
|
46
|
+
}
|