axios-error-redact 0.0.39 → 0.0.43

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/.gitattributes CHANGED
@@ -14,6 +14,7 @@
14
14
  /.npmignore linguist-generated
15
15
  /.projen/** linguist-generated
16
16
  /.projen/deps.json linguist-generated
17
+ /.projen/files.json linguist-generated
17
18
  /.projen/tasks.json linguist-generated
18
19
  /LICENSE linguist-generated
19
20
  /package-lock.json linguist-generated
package/.projenrc.ts CHANGED
@@ -35,7 +35,7 @@ const project = new typescript.TypeScriptProject({
35
35
  releaseToNpm: true,
36
36
  npmAccess: javascript.NpmAccess.PUBLIC,
37
37
  npmTokenSecret: 'NPM_TOKEN',
38
- minNodeVersion: '14',
38
+ minNodeVersion: '14.18.1',
39
39
  tsconfig: {
40
40
  compilerOptions: {
41
41
  target: 'ES2019',
@@ -54,6 +54,7 @@ const project = new typescript.TypeScriptProject({
54
54
  depsUpgradeOptions: {
55
55
  ignoreProjen: false,
56
56
  },
57
+ publishTasks: true,
57
58
  })
58
59
 
59
60
  const additionalRules = {
package/package.json CHANGED
@@ -44,13 +44,13 @@
44
44
  "eslint-plugin-import": "^2.25.3",
45
45
  "json-schema": "^0.4.0",
46
46
  "mocha": "^9.1.3",
47
- "npm-check-updates": "^11",
48
- "projen": "^0.39.3",
47
+ "npm-check-updates": "^12",
48
+ "projen": "^0.44.0",
49
49
  "standard-version": "^9",
50
50
  "ts-eager": "^2.0.2",
51
51
  "ts-node": "^9",
52
52
  "typedoc": "^0.21.4",
53
- "typescript": "^4.5.2"
53
+ "typescript": "^4.5.4"
54
54
  },
55
55
  "dependencies": {
56
56
  "axios": "^0.24.0"
@@ -66,11 +66,11 @@
66
66
  "typescript"
67
67
  ],
68
68
  "engines": {
69
- "node": ">= 14"
69
+ "node": ">= 14.18.1"
70
70
  },
71
71
  "main": "lib/index.js",
72
72
  "license": "Apache-2.0",
73
- "version": "0.0.39",
73
+ "version": "0.0.43",
74
74
  "types": "lib/index.d.ts",
75
75
  "//": "~~ Generated by projen. To modify, edit .projenrc.js and run \"npx projen\"."
76
76
  }