@azure/arm-templatespecs 2.1.1-alpha.20240925.1 → 2.1.1-alpha.20240926.1
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +29 -28
package/package.json
CHANGED
@@ -3,14 +3,14 @@
|
|
3
3
|
"sdk-type": "mgmt",
|
4
4
|
"author": "Microsoft Corporation",
|
5
5
|
"description": "A generated SDK for TemplateSpecsClient.",
|
6
|
-
"version": "2.1.1-alpha.
|
6
|
+
"version": "2.1.1-alpha.20240926.1",
|
7
7
|
"engines": {
|
8
8
|
"node": ">=18.0.0"
|
9
9
|
},
|
10
10
|
"dependencies": {
|
11
|
-
"@azure/core-paging": "^1.2.0",
|
12
|
-
"@azure/core-client": "^1.6.1",
|
13
11
|
"@azure/core-auth": "^1.3.0",
|
12
|
+
"@azure/core-client": "^1.6.1",
|
13
|
+
"@azure/core-paging": "^1.2.0",
|
14
14
|
"@azure/core-rest-pipeline": "^1.8.0",
|
15
15
|
"tslib": "^2.2.0"
|
16
16
|
},
|
@@ -26,22 +26,22 @@
|
|
26
26
|
"module": "./dist-esm/src/index.js",
|
27
27
|
"types": "./types/arm-templatespecs.d.ts",
|
28
28
|
"devDependencies": {
|
29
|
-
"@microsoft/api-extractor": "^7.31.1",
|
30
|
-
"mkdirp": "^3.0.1",
|
31
|
-
"typescript": "~5.6.2",
|
32
|
-
"uglify-js": "^3.4.9",
|
33
|
-
"rimraf": "^5.0.5",
|
34
|
-
"@azure/identity": "^4.0.1",
|
35
|
-
"@azure-tools/test-recorder": "^3.0.0",
|
36
29
|
"@azure-tools/test-credential": "^1.0.0",
|
37
|
-
"
|
30
|
+
"@azure-tools/test-recorder": "^3.0.0",
|
31
|
+
"@azure/dev-tool": ">=1.0.0-alpha <1.0.0-alphb",
|
32
|
+
"@azure/identity": "^4.0.1",
|
33
|
+
"@microsoft/api-extractor": "^7.31.1",
|
38
34
|
"@types/chai": "^4.2.8",
|
35
|
+
"@types/mocha": "^10.0.0",
|
36
|
+
"@types/node": "^18.0.0",
|
39
37
|
"chai": "^4.2.0",
|
40
38
|
"cross-env": "^7.0.2",
|
41
|
-
"
|
42
|
-
"
|
39
|
+
"mkdirp": "^3.0.1",
|
40
|
+
"mocha": "^10.0.0",
|
41
|
+
"rimraf": "^5.0.5",
|
43
42
|
"ts-node": "^10.0.0",
|
44
|
-
"
|
43
|
+
"typescript": "~5.6.2",
|
44
|
+
"uglify-js": "^3.4.9"
|
45
45
|
},
|
46
46
|
"homepage": "https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/templatespecs/arm-templatespecs",
|
47
47
|
"repository": {
|
@@ -69,30 +69,31 @@
|
|
69
69
|
"types/*"
|
70
70
|
],
|
71
71
|
"scripts": {
|
72
|
-
"build": "npm run clean && tsc && dev-tool run bundle && npm run minify && mkdirp ./review && npm run extract-api",
|
73
|
-
"minify": "uglifyjs -c -m --comments --source-map \"content='./dist/index.js.map'\" -o ./dist/index.min.js ./dist/index.js",
|
74
|
-
"prepack": "npm run build",
|
75
|
-
"pack": "npm pack 2>&1",
|
76
|
-
"extract-api": "dev-tool run extract-api",
|
77
|
-
"lint": "echo skipped",
|
78
72
|
"audit": "echo skipped",
|
79
|
-
"
|
80
|
-
"build:node": "echo skipped",
|
73
|
+
"build": "npm run clean && tsc && dev-tool run bundle && npm run minify && mkdirp ./review && npm run extract-api",
|
81
74
|
"build:browser": "echo skipped",
|
82
|
-
"build:
|
75
|
+
"build:node": "echo skipped",
|
83
76
|
"build:samples": "echo skipped.",
|
77
|
+
"build:test": "echo skipped",
|
84
78
|
"check-format": "echo skipped",
|
79
|
+
"clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log",
|
85
80
|
"execute:samples": "echo skipped",
|
81
|
+
"extract-api": "dev-tool run extract-api",
|
86
82
|
"format": "echo skipped",
|
83
|
+
"integration-test": "npm run integration-test:node && npm run integration-test:browser",
|
84
|
+
"integration-test:browser": "echo skipped",
|
85
|
+
"integration-test:node": "dev-tool run test:node-ts-input -- --timeout 1200000 'test/*.ts'",
|
86
|
+
"lint": "echo skipped",
|
87
|
+
"minify": "uglifyjs -c -m --comments --source-map \"content='./dist/index.js.map'\" -o ./dist/index.min.js ./dist/index.js",
|
88
|
+
"pack": "npm pack 2>&1",
|
89
|
+
"prepack": "npm run build",
|
87
90
|
"test": "npm run integration-test",
|
88
|
-
"test:node": "echo skipped",
|
89
91
|
"test:browser": "echo skipped",
|
92
|
+
"test:node": "echo skipped",
|
90
93
|
"unit-test": "npm run unit-test:node && npm run unit-test:browser",
|
91
|
-
"unit-test:node": "cross-env TEST_MODE=playback npm run integration-test:node",
|
92
94
|
"unit-test:browser": "echo skipped",
|
93
|
-
"
|
94
|
-
"
|
95
|
-
"integration-test:browser": "echo skipped"
|
95
|
+
"unit-test:node": "cross-env TEST_MODE=playback npm run integration-test:node",
|
96
|
+
"update-snippets": "echo skipped"
|
96
97
|
},
|
97
98
|
"sideEffects": false,
|
98
99
|
"//metadata": {
|