@azure/schema-registry-json 1.0.0-alpha.20230929.2 → 1.0.0-alpha.20231023.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 +8 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@azure/schema-registry-json",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.20231023.1",
|
|
4
4
|
"description": "Schema Registry JSON Serializer Library with typescript type definitions for node.js and browser.",
|
|
5
5
|
"sdk-type": "client",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -8,11 +8,12 @@
|
|
|
8
8
|
"types": "types/schema-registry-json.d.ts",
|
|
9
9
|
"scripts": {
|
|
10
10
|
"audit": "node ../../../common/scripts/rush-audit.js && rimraf node_modules package-lock.json && npm i --package-lock-only 2>&1 && npm audit",
|
|
11
|
-
"
|
|
12
|
-
"build:
|
|
11
|
+
"bundle": "tsc -p . && dev-tool run bundle --polyfill-node false --inject-node-polyfills true --ignore-missing-node-builtins true",
|
|
12
|
+
"build:browser": "npm run bundle",
|
|
13
|
+
"build:node": "npm run bundle",
|
|
13
14
|
"build:samples": "echo Obsolete.",
|
|
14
|
-
"build:test": "
|
|
15
|
-
"build": "npm run clean &&
|
|
15
|
+
"build:test": "npm run bundle",
|
|
16
|
+
"build": "npm run clean && npm run bundle && api-extractor run --local",
|
|
16
17
|
"check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"",
|
|
17
18
|
"clean": "rimraf dist dist-* temp types *.tgz *.log",
|
|
18
19
|
"execute:samples": "dev-tool samples run samples-dev",
|
|
@@ -40,7 +41,7 @@
|
|
|
40
41
|
],
|
|
41
42
|
"repository": "github:Azure/azure-sdk-for-js",
|
|
42
43
|
"engines": {
|
|
43
|
-
"node": ">=
|
|
44
|
+
"node": ">=16.0.0"
|
|
44
45
|
},
|
|
45
46
|
"keywords": [
|
|
46
47
|
"azure",
|
|
@@ -82,8 +83,6 @@
|
|
|
82
83
|
"@azure-tools/test-credential": "^1.0.0",
|
|
83
84
|
"@azure-tools/test-recorder": "^3.0.0",
|
|
84
85
|
"@microsoft/api-extractor": "^7.31.1",
|
|
85
|
-
"@rollup/plugin-commonjs": "^24.0.0",
|
|
86
|
-
"@rollup/plugin-inject": "^5.0.0",
|
|
87
86
|
"@types/mocha": "^10.0.0",
|
|
88
87
|
"@types/node": "^16.0.0",
|
|
89
88
|
"ajv": "^8.12.0",
|
|
@@ -101,15 +100,12 @@
|
|
|
101
100
|
"karma-mocha": "^2.0.1",
|
|
102
101
|
"karma-mocha-reporter": "^2.2.5",
|
|
103
102
|
"karma-sourcemap-loader": "^0.3.8",
|
|
104
|
-
"karma-source-map-support": "~1.4.0",
|
|
105
103
|
"mocha": "^10.0.0",
|
|
106
104
|
"mocha-junit-reporter": "^2.0.0",
|
|
107
105
|
"nyc": "^15.0.0",
|
|
108
106
|
"prettier": "^2.5.1",
|
|
109
107
|
"rimraf": "^3.0.0",
|
|
110
|
-
"
|
|
111
|
-
"source-map-support": "^0.5.9",
|
|
112
|
-
"typescript": "~5.0.0",
|
|
108
|
+
"typescript": "~5.2.0",
|
|
113
109
|
"ts-node": "^10.0.0",
|
|
114
110
|
"esm": "^3.2.18"
|
|
115
111
|
}
|