@azure/communication-phone-numbers 1.3.0-alpha.20240926.1 → 1.3.0-alpha.20240930.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1) hide show
  1. package/package.json +15 -14
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@azure/communication-phone-numbers",
3
- "version": "1.3.0-alpha.20240926.1",
3
+ "version": "1.3.0-alpha.20240930.1",
4
4
  "description": "SDK for Azure Communication service which facilitates phone number management.",
5
5
  "sdk-type": "client",
6
6
  "main": "dist/index.js",
@@ -19,19 +19,20 @@
19
19
  "extract-api": "tsc -p . && dev-tool run extract-api",
20
20
  "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"",
21
21
  "generate:client": "autorest --typescript ./swagger/README.md && rushx format",
22
+ "integration-test": "npm run integration-test:node && npm run integration-test:browser",
22
23
  "integration-test:browser": "dev-tool run test:browser",
23
24
  "integration-test:node": "dev-tool run test:node-js-input -- --timeout 5000000 'dist-esm/test/**/*.spec.js'",
24
- "integration-test": "npm run integration-test:node && npm run integration-test:browser",
25
- "lint:fix": "eslint package.json api-extractor.json README.md src test --fix --fix-type [problem,suggestion]",
26
25
  "lint": "eslint package.json api-extractor.json README.md src test",
26
+ "lint:fix": "eslint package.json api-extractor.json README.md src test --fix --fix-type [problem,suggestion]",
27
27
  "pack": "npm pack 2>&1",
28
28
  "test": "rimraf --glob dist-test && npm run build:test && npm run unit-test && npm run integration-test",
29
29
  "test:browser": "npm run build:test && npm run unit-test:browser && npm run integration-test:browser",
30
30
  "test:node": "npm run build:test && npm run unit-test:node && npm run integration-test:node",
31
31
  "test:watch": "npm run test -- --watch --reporter min",
32
+ "unit-test": "npm run unit-test:node && npm run unit-test:browser",
32
33
  "unit-test:browser": "dev-tool run test:browser",
33
34
  "unit-test:node": "dev-tool run test:node-ts-input -- --timeout 1200000 --exclude 'test/**/browser/*.spec.ts' 'test/**/*.spec.ts'",
34
- "unit-test": "npm run unit-test:node && npm run unit-test:browser"
35
+ "update-snippets": "echo skipped"
35
36
  },
36
37
  "files": [
37
38
  "dist/",
@@ -58,13 +59,13 @@
58
59
  "sideEffects": false,
59
60
  "prettier": "@azure/eslint-plugin-azure-sdk/prettier.json",
60
61
  "dependencies": {
61
- "@azure/communication-common": "^2.2.0",
62
62
  "@azure/abort-controller": "^2.0.0",
63
+ "@azure/communication-common": "^2.2.0",
63
64
  "@azure/core-auth": "^1.3.0",
64
65
  "@azure/core-client": "^1.5.0",
65
- "@azure/core-rest-pipeline": "^1.3.0",
66
66
  "@azure/core-lro": "^2.2.4",
67
67
  "@azure/core-paging": "^1.1.1",
68
+ "@azure/core-rest-pipeline": "^1.3.0",
68
69
  "@azure/core-tracing": "^1.0.0",
69
70
  "@azure/core-util": "^1.9.0",
70
71
  "@azure/logger": "^1.0.0",
@@ -72,37 +73,37 @@
72
73
  "tslib": "^2.2.0"
73
74
  },
74
75
  "devDependencies": {
75
- "@azure/dev-tool": ">=1.0.0-alpha <1.0.0-alphb",
76
- "@azure/eslint-plugin-azure-sdk": ">=3.0.0-alpha <3.0.0-alphb",
77
- "@azure-tools/test-utils": "^1.0.1",
78
76
  "@azure-tools/test-credential": "^1.0.0",
79
77
  "@azure-tools/test-recorder": "^3.0.0",
78
+ "@azure-tools/test-utils": "^1.0.1",
79
+ "@azure/dev-tool": ">=1.0.0-alpha <1.0.0-alphb",
80
+ "@azure/eslint-plugin-azure-sdk": ">=3.0.0-alpha <3.0.0-alphb",
80
81
  "@azure/identity": "^4.0.1",
81
82
  "@microsoft/api-extractor": "^7.31.1",
82
83
  "@types/chai": "^4.1.6",
83
84
  "@types/mocha": "^10.0.0",
84
- "@types/sinon": "^17.0.0",
85
85
  "@types/node": "^18.0.0",
86
+ "@types/sinon": "^17.0.0",
86
87
  "chai": "^4.2.0",
87
88
  "cross-env": "^7.0.2",
88
89
  "dotenv": "^16.0.0",
89
90
  "eslint": "^9.9.0",
90
91
  "inherits": "^2.0.3",
92
+ "karma": "^6.2.0",
91
93
  "karma-chrome-launcher": "^3.0.0",
92
94
  "karma-coverage": "^2.0.0",
93
95
  "karma-env-preprocessor": "^0.1.1",
94
96
  "karma-firefox-launcher": "^1.1.0",
95
97
  "karma-junit-reporter": "^2.0.1",
96
- "karma-mocha-reporter": "^2.2.5",
97
98
  "karma-mocha": "^2.0.1",
99
+ "karma-mocha-reporter": "^2.2.5",
98
100
  "karma-sourcemap-loader": "^0.3.8",
99
- "karma": "^6.2.0",
100
101
  "mocha": "^10.0.0",
101
102
  "nyc": "^17.0.0",
102
103
  "rimraf": "^5.0.5",
103
104
  "sinon": "^17.0.0",
104
- "typescript": "~5.6.2",
105
- "ts-node": "^10.0.0"
105
+ "ts-node": "^10.0.0",
106
+ "typescript": "~5.6.2"
106
107
  },
107
108
  "//metadata": {
108
109
  "constantPaths": [