@azure/ai-language-text 1.1.0-alpha.20240924.1 → 1.1.0-alpha.20240926.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 +17 -16
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "sdk-type": "client",
4
4
  "author": "Microsoft Corporation",
5
5
  "description": "An isomorphic client library for the text analysis features in the Azure Cognitive Language Service.",
6
- "version": "1.1.0-alpha.20240924.1",
6
+ "version": "1.1.0-alpha.20240926.1",
7
7
  "keywords": [
8
8
  "node",
9
9
  "azure",
@@ -60,64 +60,65 @@
60
60
  },
61
61
  "scripts": {
62
62
  "audit": "node ../../../common/scripts/rush-audit.js && rimraf node_modules package-lock.json && npm i --package-lock-only 2>&1 && npm audit",
63
+ "build": "npm run clean && tsc -p . && dev-tool run bundle && dev-tool run extract-api",
63
64
  "build:browser": "tsc -p . && dev-tool run bundle",
65
+ "build:debug": "tsc -p . && dev-tool run bundle && dev-tool run extract-api",
64
66
  "build:node": "tsc -p . && dev-tool run bundle",
65
67
  "build:samples": "echo Obsolete.",
66
68
  "build:test": "tsc -p . && dev-tool run bundle",
67
- "build": "npm run clean && tsc -p . && dev-tool run bundle && dev-tool run extract-api",
68
- "build:debug": "tsc -p . && dev-tool run bundle && dev-tool run extract-api",
69
69
  "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"",
70
70
  "clean": "rimraf --glob dist dist-* temp types *.tgz *.log",
71
71
  "execute:samples": "dev-tool samples run samples-dev",
72
72
  "extract-api": "tsc -p . && dev-tool run extract-api",
73
73
  "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"",
74
74
  "generate:client": "autorest --typescript swagger/README.md",
75
+ "integration-test": "npm run integration-test:node && npm run integration-test:browser",
75
76
  "integration-test:browser": "dev-tool run test:browser",
76
77
  "integration-test:node": "dev-tool run test:node-js-input -- --timeout 5000000 \"dist-esm/test/**/*.spec.js\"",
77
- "integration-test": "npm run integration-test:node && npm run integration-test:browser",
78
- "lint:fix": "eslint package.json api-extractor.json src test --fix --fix-type [problem,suggestion]",
79
78
  "lint": "eslint package.json api-extractor.json src test",
79
+ "lint:fix": "eslint package.json api-extractor.json src test --fix --fix-type [problem,suggestion]",
80
80
  "pack": "npm pack 2>&1",
81
+ "test": "npm run clean && npm run build:test && npm run unit-test",
81
82
  "test:browser": "npm run clean && npm run build:test && npm run unit-test:browser",
82
83
  "test:node": "npm run clean && npm run build:test && npm run unit-test:node",
83
- "test": "npm run clean && npm run build:test && npm run unit-test",
84
+ "unit-test": "npm run unit-test:node && npm run unit-test:browser",
84
85
  "unit-test:browser": "echo skipped",
85
86
  "unit-test:node": "echo skipped",
86
- "unit-test": "npm run unit-test:node && npm run unit-test:browser"
87
+ "update-snippets": "echo skipped"
87
88
  },
88
89
  "sideEffects": false,
89
90
  "autoPublish": false,
90
91
  "dependencies": {
91
92
  "@azure/core-auth": "^1.3.0",
92
93
  "@azure/core-client": "^1.6.0",
93
- "@azure/core-rest-pipeline": "^1.8.1",
94
94
  "@azure/core-lro": "^2.3.0",
95
95
  "@azure/core-paging": "^1.3.0",
96
+ "@azure/core-rest-pipeline": "^1.8.1",
96
97
  "@azure/core-tracing": "^1.0.0",
97
98
  "@azure/logger": "^1.0.0",
98
99
  "tslib": "^2.2.0"
99
100
  },
100
101
  "devDependencies": {
101
- "@azure/storage-blob": "^12.23.0-beta.1",
102
+ "@azure-tools/test-credential": "^1.0.0",
103
+ "@azure-tools/test-recorder": "^3.0.0",
104
+ "@azure-tools/test-utils": "^1.0.1",
102
105
  "@azure/ai-language-textauthoring": ">=1.0.0-alpha <1.0.0-alphb",
103
- "@types/decompress": "^4.0.0",
106
+ "@azure/core-util": "^1.9.0",
104
107
  "@azure/dev-tool": ">=1.0.0-alpha <1.0.0-alphb",
105
108
  "@azure/eslint-plugin-azure-sdk": ">=3.0.0-alpha <3.0.0-alphb",
106
109
  "@azure/identity": "^4.0.1",
107
- "@azure/core-util": "^1.9.0",
108
- "@azure-tools/test-utils": "^1.0.1",
109
- "@azure-tools/test-recorder": "^3.0.0",
110
- "@azure-tools/test-credential": "^1.0.0",
110
+ "@azure/storage-blob": "^12.23.0-beta.1",
111
111
  "@microsoft/api-extractor": "^7.31.1",
112
112
  "@types/chai": "^4.1.6",
113
113
  "@types/chai-as-promised": "^7.1.0",
114
+ "@types/decompress": "^4.0.0",
114
115
  "@types/mocha": "^10.0.0",
115
116
  "@types/node": "^18.0.0",
116
117
  "@types/sinon": "^17.0.0",
117
- "decompress": "^4.0.0",
118
118
  "chai": "^4.2.0",
119
119
  "chai-as-promised": "^7.1.1",
120
120
  "cross-env": "^7.0.2",
121
+ "decompress": "^4.0.0",
121
122
  "dotenv": "^16.0.0",
122
123
  "eslint": "^9.9.0",
123
124
  "karma": "^6.2.0",
@@ -128,8 +129,8 @@
128
129
  "karma-junit-reporter": "^2.0.1",
129
130
  "karma-mocha": "^2.0.1",
130
131
  "karma-mocha-reporter": "^2.2.5",
131
- "karma-sourcemap-loader": "^0.3.8",
132
132
  "karma-source-map-support": "~1.4.0",
133
+ "karma-sourcemap-loader": "^0.3.8",
133
134
  "mocha": "^10.0.0",
134
135
  "nyc": "^17.0.0",
135
136
  "rimraf": "^5.0.5",