axios-error-redact 0.0.33 → 0.0.37
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/.projenrc.ts +4 -4
- package/package.json +5 -5
package/.projenrc.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {JsonFile, typescript, javascript} from 'projen'
|
|
2
2
|
|
|
3
|
-
const project = new TypeScriptProject({
|
|
3
|
+
const project = new typescript.TypeScriptProject({
|
|
4
4
|
projenrcTs: true,
|
|
5
5
|
defaultReleaseBranch: 'main',
|
|
6
6
|
name: 'axios-error-redact',
|
|
@@ -16,7 +16,7 @@ const project = new TypeScriptProject({
|
|
|
16
16
|
],
|
|
17
17
|
majorVersion: 0,
|
|
18
18
|
packageName: 'axios-error-redact',
|
|
19
|
-
packageManager: NodePackageManager.NPM,
|
|
19
|
+
packageManager: javascript.NodePackageManager.NPM,
|
|
20
20
|
repository: 'https://github.com/AminFazlMondo/Axios-Error-Redact.git',
|
|
21
21
|
authorEmail: 'amin.fazl@mondo.com.au',
|
|
22
22
|
authorName: 'Amin Fazl',
|
|
@@ -33,7 +33,7 @@ const project = new TypeScriptProject({
|
|
|
33
33
|
'@types/babel__core',
|
|
34
34
|
],
|
|
35
35
|
releaseToNpm: true,
|
|
36
|
-
npmAccess: NpmAccess.PUBLIC,
|
|
36
|
+
npmAccess: javascript.NpmAccess.PUBLIC,
|
|
37
37
|
npmTokenSecret: 'NPM_TOKEN',
|
|
38
38
|
minNodeVersion: '14',
|
|
39
39
|
tsconfig: {
|
package/package.json
CHANGED
|
@@ -35,17 +35,17 @@
|
|
|
35
35
|
"@types/chai": "^4.2.22",
|
|
36
36
|
"@types/mocha": "^9.0.0",
|
|
37
37
|
"@types/node": "^14",
|
|
38
|
-
"@typescript-eslint/eslint-plugin": "^
|
|
39
|
-
"@typescript-eslint/parser": "^
|
|
38
|
+
"@typescript-eslint/eslint-plugin": "^5",
|
|
39
|
+
"@typescript-eslint/parser": "^5",
|
|
40
40
|
"chai": "^4.3.4",
|
|
41
|
-
"eslint": "^
|
|
41
|
+
"eslint": "^8",
|
|
42
42
|
"eslint-import-resolver-node": "^0.3.6",
|
|
43
43
|
"eslint-import-resolver-typescript": "^2.5.0",
|
|
44
44
|
"eslint-plugin-import": "^2.25.3",
|
|
45
45
|
"json-schema": "^0.4.0",
|
|
46
46
|
"mocha": "^9.1.3",
|
|
47
47
|
"npm-check-updates": "^11",
|
|
48
|
-
"projen": "^0.
|
|
48
|
+
"projen": "^0.37.1",
|
|
49
49
|
"standard-version": "^9",
|
|
50
50
|
"ts-eager": "^2.0.2",
|
|
51
51
|
"ts-node": "^9",
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
},
|
|
71
71
|
"main": "lib/index.js",
|
|
72
72
|
"license": "Apache-2.0",
|
|
73
|
-
"version": "0.0.
|
|
73
|
+
"version": "0.0.37",
|
|
74
74
|
"types": "lib/index.d.ts",
|
|
75
75
|
"//": "~~ Generated by projen. To modify, edit .projenrc.js and run \"npx projen\"."
|
|
76
76
|
}
|