@azure/identity 4.11.2-alpha.20250808.3 → 4.11.2
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 +31 -31
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@azure/identity",
|
3
3
|
"sdk-type": "client",
|
4
|
-
"version": "4.11.2
|
4
|
+
"version": "4.11.2",
|
5
5
|
"description": "Provides credential implementations for Azure SDK libraries that can authenticate with Microsoft Entra ID",
|
6
6
|
"main": "./dist/commonjs/index.js",
|
7
7
|
"module": "./dist/esm/index.js",
|
@@ -21,24 +21,6 @@
|
|
21
21
|
"Set and retrieve a secret from Azure Key Vault": "https://learn.microsoft.com/azure/key-vault/secrets/quick-create-portal"
|
22
22
|
}
|
23
23
|
},
|
24
|
-
"scripts": {
|
25
|
-
"build": "npm run clean && dev-tool run build-package && dev-tool run extract-api",
|
26
|
-
"build:samples": "echo Obsolete.",
|
27
|
-
"check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"",
|
28
|
-
"clean": "dev-tool run vendored rimraf --glob dist dist-* types *.tgz *.log",
|
29
|
-
"execute:samples": "dev-tool samples run samples-dev",
|
30
|
-
"extract-api": "dev-tool run build-package && dev-tool run extract-api",
|
31
|
-
"format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"",
|
32
|
-
"lint": "eslint package.json src test",
|
33
|
-
"lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]",
|
34
|
-
"pack": "npm pack 2>&1",
|
35
|
-
"test": "npm run test:node && npm run test:browser",
|
36
|
-
"test:browser": "npm run clean && dev-tool run build-package && dev-tool run build-test && dev-tool run test:vitest --browser",
|
37
|
-
"test:node": "dev-tool run build-test --no-browser-test && dev-tool run test:vitest",
|
38
|
-
"test:node:managed-identity": "dev-tool run test:vitest -- --config ./vitest.managed-identity.config.ts",
|
39
|
-
"test:node:no-timeouts": "dev-tool run test:vitest -- --test-timeout=0",
|
40
|
-
"update-snippets": "dev-tool run update-snippets"
|
41
|
-
},
|
42
24
|
"files": [
|
43
25
|
"dist/",
|
44
26
|
"README.md",
|
@@ -88,24 +70,24 @@
|
|
88
70
|
"tslib": "^2.2.0"
|
89
71
|
},
|
90
72
|
"devDependencies": {
|
91
|
-
"@azure-tools/test-recorder": ">=4.1.0-alpha <4.1.0-alphb",
|
92
|
-
"@azure-tools/test-utils-vitest": ">=1.0.0-alpha <1.0.0-alphb",
|
93
|
-
"@azure/dev-tool": ">=1.0.0-alpha <1.0.0-alphb",
|
94
|
-
"@azure/eslint-plugin-azure-sdk": ">=3.0.0-alpha <3.0.0-alphb",
|
95
73
|
"@azure/keyvault-keys": "4.10.0",
|
96
74
|
"@types/jsonwebtoken": "^9.0.0",
|
97
75
|
"@types/ms": "^2.1.0",
|
98
|
-
"@types/node": "^20.
|
99
|
-
"@vitest/browser": "^3.
|
100
|
-
"@vitest/coverage-istanbul": "^3.
|
76
|
+
"@types/node": "^20.19.0",
|
77
|
+
"@vitest/browser": "^3.2.3",
|
78
|
+
"@vitest/coverage-istanbul": "^3.2.3",
|
101
79
|
"assertion-error": "^2.0.1",
|
102
80
|
"dotenv": "^16.0.0",
|
103
|
-
"eslint": "^9.
|
81
|
+
"eslint": "^9.33.0",
|
104
82
|
"jsonwebtoken": "^9.0.0",
|
105
83
|
"ms": "^2.1.3",
|
106
|
-
"playwright": "^1.
|
107
|
-
"typescript": "~5.8.
|
108
|
-
"vitest": "^3.
|
84
|
+
"playwright": "^1.50.1",
|
85
|
+
"typescript": "~5.8.3",
|
86
|
+
"vitest": "^3.2.3",
|
87
|
+
"@azure-tools/test-utils-vitest": "^1.0.0",
|
88
|
+
"@azure-tools/test-recorder": "^4.1.0",
|
89
|
+
"@azure/eslint-plugin-azure-sdk": "^3.0.0",
|
90
|
+
"@azure/dev-tool": "^1.0.0"
|
109
91
|
},
|
110
92
|
"type": "module",
|
111
93
|
"tshy": {
|
@@ -144,5 +126,23 @@
|
|
144
126
|
"default": "./dist/commonjs/index.js"
|
145
127
|
}
|
146
128
|
}
|
129
|
+
},
|
130
|
+
"scripts": {
|
131
|
+
"build": "npm run clean && dev-tool run build-package && dev-tool run extract-api",
|
132
|
+
"build:samples": "echo Obsolete.",
|
133
|
+
"check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"",
|
134
|
+
"clean": "dev-tool run vendored rimraf --glob dist dist-* types *.tgz *.log",
|
135
|
+
"execute:samples": "dev-tool samples run samples-dev",
|
136
|
+
"extract-api": "dev-tool run build-package && dev-tool run extract-api",
|
137
|
+
"format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"",
|
138
|
+
"lint": "eslint package.json src test",
|
139
|
+
"lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]",
|
140
|
+
"pack": "pnpm pack 2>&1",
|
141
|
+
"test": "npm run test:node && npm run test:browser",
|
142
|
+
"test:browser": "npm run clean && dev-tool run build-package && dev-tool run build-test && dev-tool run test:vitest --browser",
|
143
|
+
"test:node": "dev-tool run build-test --no-browser-test && dev-tool run test:vitest",
|
144
|
+
"test:node:managed-identity": "dev-tool run test:vitest -- --config ./vitest.managed-identity.config.ts",
|
145
|
+
"test:node:no-timeouts": "dev-tool run test:vitest -- --test-timeout=0",
|
146
|
+
"update-snippets": "dev-tool run update-snippets"
|
147
147
|
}
|
148
|
-
}
|
148
|
+
}
|