-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.16 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18"
},
"name": "@commercetools/sdk-middleware-correlation-id",
"version": "4.0.0",
"description": "Middleware for adding a correlation id to requests being executed, to use with @commercetools/sdk-client",
"keywords": [
"commercetools",
"sdk",
"middleware",
"correlation-id",
"request tracing"
],
"homepage": "https://commercetools.github.io/nodejs/",
"bugs": "https://github.com/commercetools/nodejs/issues",
"license": "MIT",
"author": "Tobias Deekens <tobias.deekens@commercetools.com> (https://github.com/tdeekens)",
"main": "dist/commercetools-sdk-middleware-correlation-id.cjs.js",
"module": "dist/commercetools-sdk-middleware-correlation-id.esm.js",
"umd:min": "dist/commercetools-sdk-middleware-correlation-id.umd.js",
"preconstruct": {
"entrypoints": [
"./index.js"
],
"umdName": "commercetoolsSdkMiddlewareCorrelationId"
},
"repository": {
"type": "git",
"url": "https://github.com/commercetools/nodejs.git"
},
"files": [
"dist"
],
"scripts": {
"prebuild": "rimraf dist/**",
"build": "exit 0;"
}
}