@azure-rest/confidential-ledger 1.0.1-alpha.20240926.1 → 1.0.1-alpha.20240927.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.
Files changed (1) hide show
  1. package/package.json +12 -11
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "sdk-type": "client",
4
4
  "author": "Microsoft Corporation",
5
5
  "description": "An isomorphic rest level client library for the Azure Confidential Ledger service.",
6
- "version": "1.0.1-alpha.20240926.1",
6
+ "version": "1.0.1-alpha.20240927.1",
7
7
  "keywords": [
8
8
  "node",
9
9
  "azure",
@@ -52,30 +52,31 @@
52
52
  },
53
53
  "scripts": {
54
54
  "audit": "node ../../../common/scripts/rush-audit.js && rimraf node_modules package-lock.json && npm i --package-lock-only 2>&1 && npm audit",
55
+ "build": "npm run clean && tsc -p . && dev-tool run bundle --browser-test=false && dev-tool run extract-api",
55
56
  "build:browser": "echo \"Browser is not supported.\" && exit 0",
57
+ "build:debug": "tsc -p . && dev-tool run bundle && dev-tool run extract-api",
56
58
  "build:node": "tsc -p . && dev-tool run bundle --browser-test=false",
57
59
  "build:samples": "echo Obsolete.",
58
60
  "build:test": "tsc -p . && dev-tool run bundle --browser-test=false",
59
- "build": "npm run clean && tsc -p . && dev-tool run bundle --browser-test=false && dev-tool run extract-api",
60
- "build:debug": "tsc -p . && dev-tool run bundle && dev-tool run extract-api",
61
61
  "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"",
62
62
  "clean": "rimraf --glob dist dist-browser dist-esm dist-test temp types *.tgz *.log",
63
63
  "execute:samples": "dev-tool samples run samples-dev",
64
64
  "extract-api": "tsc -p . && dev-tool run extract-api",
65
65
  "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"",
66
66
  "generate:client": "autorest --typescript swagger/README.md && rushx format",
67
+ "integration-test": "npm run integration-test:node",
67
68
  "integration-test:browser": "echo \"Browser is not supported.\" && exit 0",
68
69
  "integration-test:node": "dev-tool run test:node-js-input -- --timeout 5000000 'dist-esm/test/**/*.spec.js'",
69
- "integration-test": "npm run integration-test:node",
70
- "lint:fix": "eslint package.json api-extractor.json src test --fix --fix-type [problem,suggestion]",
71
70
  "lint": "eslint package.json api-extractor.json src test",
71
+ "lint:fix": "eslint package.json api-extractor.json src test --fix --fix-type [problem,suggestion]",
72
72
  "pack": "npm pack 2>&1",
73
+ "test": "npm run clean && npm run build:test && npm run unit-test",
73
74
  "test:browser": "npm run clean && npm run build:test && npm run unit-test:browser",
74
75
  "test:node": "npm run clean && npm run build:test && npm run unit-test:node",
75
- "test": "npm run clean && npm run build:test && npm run unit-test",
76
+ "unit-test": "npm run unit-test:node",
76
77
  "unit-test:browser": "echo \"Browser is not supported.\" && exit 0",
77
78
  "unit-test:node": "dev-tool run test:node-ts-input -- --timeout 1200000 'test/**/*.spec.ts'",
78
- "unit-test": "npm run unit-test:node"
79
+ "update-snippets": "echo skipped"
79
80
  },
80
81
  "sideEffects": false,
81
82
  "autoPublish": false,
@@ -88,12 +89,12 @@
88
89
  "tslib": "^2.2.0"
89
90
  },
90
91
  "devDependencies": {
91
- "@azure-tools/test-recorder": "^3.0.0",
92
92
  "@azure-tools/test-credential": "^1.0.0",
93
+ "@azure-tools/test-recorder": "^3.0.0",
94
+ "@azure-tools/test-utils": "^1.0.1",
93
95
  "@azure/dev-tool": ">=1.0.0-alpha <1.0.0-alphb",
94
96
  "@azure/eslint-plugin-azure-sdk": ">=3.0.0-alpha <3.0.0-alphb",
95
97
  "@azure/identity": "^4.0.1",
96
- "@azure-tools/test-utils": "^1.0.1",
97
98
  "@microsoft/api-extractor": "^7.31.1",
98
99
  "@types/chai": "^4.1.6",
99
100
  "@types/mocha": "^10.0.0",
@@ -106,7 +107,7 @@
106
107
  "nyc": "^17.0.0",
107
108
  "rimraf": "^5.0.5",
108
109
  "source-map-support": "^0.5.9",
109
- "typescript": "~5.6.2",
110
- "ts-node": "^10.0.0"
110
+ "ts-node": "^10.0.0",
111
+ "typescript": "~5.6.2"
111
112
  }
112
113
  }