@azure/attestation 1.0.1-alpha.20250506.1 → 1.0.1-alpha.20250507.1
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 +5 -13
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@azure/attestation",
|
|
3
|
-
"version": "1.0.1-alpha.
|
|
3
|
+
"version": "1.0.1-alpha.20250507.1",
|
|
4
4
|
"description": "Javascript/Typescript client implementation for the Microsoft Azure Attestation service.",
|
|
5
5
|
"sdk-type": "client",
|
|
6
6
|
"main": "./dist/commonjs/index.js",
|
|
@@ -21,29 +21,21 @@
|
|
|
21
21
|
"types": "./dist/commonjs/index.d.ts",
|
|
22
22
|
"scripts": {
|
|
23
23
|
"build": "npm run clean && dev-tool run build-package && dev-tool run extract-api",
|
|
24
|
-
"build:browser": "dev-tool run build-package && dev-tool run build-test",
|
|
25
|
-
"build:node": "dev-tool run build-package && dev-tool run build-test",
|
|
26
24
|
"build:nodebrowser": "dev-tool run build-test",
|
|
27
25
|
"build:samples": "echo Obsolete.",
|
|
28
|
-
"build:test": "dev-tool run build-package && dev-tool run build-test",
|
|
29
26
|
"check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"",
|
|
30
27
|
"clean": "dev-tool run vendored rimraf --glob dist dist-* temp types *.tgz *.log",
|
|
31
28
|
"execute:samples": "dev-tool samples run samples-dev",
|
|
32
29
|
"extract-api": "dev-tool run build-package && dev-tool run extract-api",
|
|
33
30
|
"format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"",
|
|
34
31
|
"generate:client": "autorest --typescript ./swagger/README.md",
|
|
35
|
-
"integration-test": "npm run integration-test:node && npm run integration-test:browser",
|
|
36
|
-
"integration-test:browser": "dev-tool run test:vitest --browser",
|
|
37
|
-
"integration-test:node": "dev-tool run test:vitest --esm -- --test-timeout 5000000",
|
|
38
32
|
"lint": "eslint package.json api-extractor.json src test",
|
|
39
33
|
"lint:fix": "eslint package.json api-extractor.json src test --fix --fix-type [problem,suggestion]",
|
|
40
34
|
"pack": "npm pack 2>&1",
|
|
41
|
-
"test": "npm run
|
|
42
|
-
"test:browser": "npm run build
|
|
43
|
-
"test:node": "
|
|
44
|
-
"
|
|
45
|
-
"unit-test:browser": "npm run clean && dev-tool run build-package && dev-tool run build-test && dev-tool run test:vitest --browser",
|
|
46
|
-
"unit-test:node": "dev-tool run test:vitest",
|
|
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 test:vitest",
|
|
38
|
+
"test:node:esm": "dev-tool run test:vitest --esm -- --test-timeout 5000000",
|
|
47
39
|
"update-snippets": "dev-tool run update-snippets"
|
|
48
40
|
},
|
|
49
41
|
"files": [
|