eswat2 2.1.231 → 2.1.232

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 (1) hide show
  1. package/package.json +18 -13
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eswat2",
3
- "version": "2.1.231",
3
+ "version": "2.1.232",
4
4
  "description": "A personal card for Richard Hess (@eswat2)",
5
5
  "main": "/bin/card.js",
6
6
  "bin": {
@@ -10,16 +10,6 @@
10
10
  "type": "git",
11
11
  "url": "https://github.com/eswat2/eswat2.git"
12
12
  },
13
- "scripts": {
14
- "prepare": "yarn build",
15
- "build": "node build.mjs",
16
- "test": "mocha",
17
- "dev": "yarn build && node ./bin/card.js",
18
- "predeploy": "yarn dev",
19
- "deploy": "yarn publish --patch",
20
- "lint": "standard",
21
- "open": "npx eswat2@latest"
22
- },
23
13
  "keywords": [
24
14
  "card",
25
15
  "npm",
@@ -34,11 +24,26 @@
34
24
  "bin/card.js",
35
25
  "bin/output"
36
26
  ],
27
+ "dependencies": {},
37
28
  "devDependencies": {
38
29
  "boxen": "8.0.1",
30
+ "bumpp": "10.4.0",
39
31
  "mocha": "11.7.5",
32
+ "only-allow": "1.2.2",
40
33
  "picocolors": "1.1.1",
41
34
  "sinon": "21.0.1",
42
- "standard": "17.1.2"
35
+ "standard": "17.1.2",
36
+ "yoctocolors": "2.1.2"
37
+ },
38
+ "scripts": {
39
+ "bump": "bumpp patch --yes",
40
+ "card": "node ./bin/card.js",
41
+ "release": "pnpm bump && pnpm build && pnpm card && pnpm publish",
42
+ "preinstall": "npx only-allow pnpm",
43
+ "build": "node build.mjs",
44
+ "test": "mocha",
45
+ "dev": "pnpm build && pnpm card",
46
+ "lint": "standard",
47
+ "open": "npx eswat2@latest"
43
48
  }
44
- }
49
+ }