-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.06 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.06 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
{
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18"
},
"name": "@commercetools/sdk-middleware-queue",
"version": "4.0.1",
"description": "Middleware for queueing requests, to use with @commercetools/sdk-client",
"keywords": [
"commercetools",
"sdk",
"middleware",
"queue"
],
"homepage": "https://commercetools.github.io/nodejs/",
"bugs": "https://github.com/commercetools/nodejs/issues",
"license": "MIT",
"author": "Nicola Molinari <nicola.molinari@commercetools.com> (https://github.com/emmenko)",
"main": "dist/commercetools-sdk-middleware-queue.cjs.js",
"module": "dist/commercetools-sdk-middleware-queue.esm.js",
"umd:min": "dist/commercetools-sdk-middleware-queue.umd.js",
"preconstruct": {
"entrypoints": [
"./index.js"
],
"umdName": "commercetoolsSdkMiddlewareQueue"
},
"repository": {
"type": "git",
"url": "https://github.com/commercetools/nodejs.git"
},
"files": [
"dist"
],
"scripts": {
"prebuild": "rimraf dist/**",
"build": "exit 0;"
}
}