@karmaniverous/get-dotenv 4.4.2 → 4.4.4

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/package.json CHANGED
@@ -9,20 +9,20 @@
9
9
  "dependencies": {
10
10
  "commander": "^12.1.0",
11
11
  "dotenv": "^16.4.5",
12
- "execa": "^9.1.0",
12
+ "execa": "^9.2.0",
13
13
  "fs-extra": "^11.2.0",
14
14
  "globby": "<14",
15
15
  "lodash": "^4.17.21",
16
16
  "nanoid": "^5.0.7",
17
17
  "pkg-dir": "^8.0.0",
18
- "tslog": "^4.9.2"
18
+ "tslog": "^4.9.3"
19
19
  },
20
20
  "description": "Process dotenv files in an arbitrary location & optionally populate environment variables.",
21
21
  "devDependencies": {
22
22
  "@commander-js/extra-typings": "^12.1.0",
23
- "@eslint/js": "^9.3.0",
23
+ "@eslint/js": "^9.5.0",
24
24
  "@rollup/plugin-alias": "^5.1.0",
25
- "@rollup/plugin-commonjs": "^25.0.8",
25
+ "@rollup/plugin-commonjs": "^26.0.1",
26
26
  "@rollup/plugin-json": "^6.1.0",
27
27
  "@rollup/plugin-node-resolve": "^15.2.3",
28
28
  "@rollup/plugin-terser": "^0.4.4",
@@ -32,9 +32,9 @@
32
32
  "@types/eslint-config-prettier": "^6.11.3",
33
33
  "@types/eslint-plugin-mocha": "^10.4.0",
34
34
  "@types/fs-extra": "^11.0.4",
35
- "@types/lodash": "^4.17.4",
35
+ "@types/lodash": "^4.17.5",
36
36
  "@types/mocha": "^10.0.6",
37
- "@types/node": "^20.12.13",
37
+ "@types/node": "^20.14.5",
38
38
  "auto-changelog": "^2.4.0",
39
39
  "chai": "^5.1.1",
40
40
  "cross-env": "^7.0.3",
@@ -45,19 +45,20 @@
45
45
  "eslint-plugin-tsdoc": "^0.2.17",
46
46
  "fs-extra": "^11.2.0",
47
47
  "jsdom-global": "^3.0.2",
48
- "lefthook": "^1.6.14",
48
+ "knip": "^5.21.2",
49
+ "lefthook": "^1.6.16",
49
50
  "mocha": "^10.4.0",
50
- "nyc": "^15.1.0",
51
- "prettier": "^3.2.5",
51
+ "nyc": "^17.0.0",
52
+ "prettier": "^3.3.2",
52
53
  "release-it": "^17.3.0",
53
54
  "rimraf": "^5.0.7",
54
55
  "rollup": "^4.18.0",
55
56
  "rollup-plugin-dts": "^6.1.1",
56
57
  "source-map-support": "^0.5.21",
57
58
  "ts-node": "^10.9.2",
58
- "tslib": "^2.6.2",
59
+ "tslib": "^2.6.3",
59
60
  "typescript": "^5.4.5",
60
- "typescript-eslint": "^7.11.0"
61
+ "typescript-eslint": "^7.13.1"
61
62
  },
62
63
  "exports": {
63
64
  ".": {
@@ -111,7 +112,7 @@
111
112
  "after:release": [
112
113
  "git switch -c release/${version}",
113
114
  "git push -u origin release/${version}",
114
- "git switch main"
115
+ "git switch ${branchName}"
115
116
  ]
116
117
  },
117
118
  "npm": {
@@ -125,12 +126,15 @@
125
126
  "scripts": {
126
127
  "build": "rimraf dist && rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript",
127
128
  "cli": "node dist/getdotenv.cli.mjs",
129
+ "knip": "knip",
128
130
  "lint": "eslint src/** && prettier -c src",
129
131
  "lint:fix": "eslint --fix src/** && prettier --write src",
132
+ "postinstall": "npm audit fix",
130
133
  "release": "release-it",
134
+ "release:pre": "vc -c \"release-it --no-git.requireBranch --github.prerelease --preRelease\"",
131
135
  "test": "cross-env LOG_LEVEL=debug nyc mocha"
132
136
  },
133
137
  "type": "module",
134
138
  "types": "dist/index.d.ts",
135
- "version": "4.4.2"
139
+ "version": "4.4.4"
136
140
  }