@ehildt/depbadge 1.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 (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +105 -0
  3. package/dist/index.mjs +5413 -0
  4. package/package.json +86 -0
package/package.json ADDED
@@ -0,0 +1,86 @@
1
+ {
2
+ "name": "@ehildt/depbadge",
3
+ "description": "A tool that creates shieldio badges",
4
+ "version": "1.0.0",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "main": "dist/index.mjs",
8
+ "files": [
9
+ "dist"
10
+ ],
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "https://github.com/ehildt/depbadge.git"
14
+ },
15
+ "publishConfig": {
16
+ "access": "public"
17
+ },
18
+ "author": {
19
+ "email": "eugen.hildt@gmail.com",
20
+ "name": "Eugen Hildt"
21
+ },
22
+ "bugs": {
23
+ "email": "eugen.hildt@gmail.com"
24
+ },
25
+ "scripts": {
26
+ "prepublishOnly": "pnpm tsup",
27
+ "depbadge": "rimraf .depbadge && node dist/index.mjs",
28
+ "build": "rimraf dist && pnpm tsup",
29
+ "depcheck": "npx depcheck .",
30
+ "depcruise": "npx dependency-cruiser -c .depcruise.mjs --ts-config tsconfig.json src",
31
+ "format": "prettier --write .",
32
+ "lint": "eslint ./src",
33
+ "lint-staged": "npx lint-staged --allow-empty",
34
+ "ncu:update": "npx npm-check-updates -u --format group",
35
+ "ncu:interactive": "npx npm-check-updates -u --interactive --format group",
36
+ "ncu:validate": "npx npm-check-updates -e 2 --packageFile=./package.json",
37
+ "prebuild": "rimraf dist",
38
+ "test": "jest --passWithNoTests",
39
+ "test:clearCache": "jest --clearCache",
40
+ "test:cov": "jest --coverage --passWithNoTests",
41
+ "test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
42
+ "test:e2e": "dotenv -e ./env/.env.e2e -- jest --detectOpenHandles --config ./test/jest-e2e.json",
43
+ "test:watch": "jest --watch",
44
+ "lint:unused": "npx ts-unused-exports ./tsconfig.exclude.json --maxIssues=0"
45
+ },
46
+ "dependencies": {
47
+ "@iarna/toml": "^2.2.5",
48
+ "chalk": "^5.6.2",
49
+ "colord": "^2.9.3",
50
+ "js-yaml": "^4.1.1"
51
+ },
52
+ "devDependencies": {
53
+ "@changesets/cli": "^2.29.8",
54
+ "@eslint/js": "^10.0.1",
55
+ "@types/eslint": "^9.6.1",
56
+ "@types/jest": "^30.0.0",
57
+ "@types/node": "^25.3.3",
58
+ "@types/supertest": "^7.2.0",
59
+ "depcheck": "^1.4.7",
60
+ "dependency-cruiser": "^17.3.8",
61
+ "dotenv-cli": "^11.0.0",
62
+ "eslint": "^10.0.2",
63
+ "eslint-config-prettier": "^10.1.8",
64
+ "eslint-plugin-prettier": "^5.5.5",
65
+ "eslint-plugin-simple-import-sort": "^12.1.1",
66
+ "eslint-plugin-sonarjs": "^4.0.0",
67
+ "globals": "^17.4.0",
68
+ "husky": "^9.1.7",
69
+ "jest": "^30.2.0",
70
+ "jest-extended": "^7.0.0",
71
+ "jest-junit": "^16.0.0",
72
+ "jiti": "^2.6.1",
73
+ "lint-staged": "^16.3.1",
74
+ "npm-check-updates": "^19.6.3",
75
+ "rimraf": "^6.1.3",
76
+ "source-map-support": "^0.5.21",
77
+ "supertest": "^7.2.2",
78
+ "ts-jest": "^29.4.6",
79
+ "ts-loader": "^9.5.4",
80
+ "ts-node": "^10.9.2",
81
+ "ts-unused-exports": "^11.0.1",
82
+ "tsup": "^8.5.1",
83
+ "typescript": "^5.9.3",
84
+ "typescript-eslint": "^8.56.1"
85
+ }
86
+ }