-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.15 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.15 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
43
44
45
46
{
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18"
},
"name": "@commercetools/sdk-middleware-http",
"version": "8.0.1",
"description": "Middleware for http requests, to use with @commercetools/sdk-client",
"keywords": [
"commercetools",
"sdk",
"middleware",
"http"
],
"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-http.cjs.js",
"module": "dist/commercetools-sdk-middleware-http.esm.js",
"umd:min": "dist/commercetools-sdk-middleware-http.umd.js",
"preconstruct": {
"entrypoints": [
"./index.js"
],
"umdName": "commercetoolsSdkMiddlewareHttp"
},
"repository": {
"type": "git",
"url": "https://github.com/commercetools/nodejs.git"
},
"files": [
"dist"
],
"scripts": {
"prebuild": "rimraf dist/**",
"build": "exit 0;"
},
"devDependencies": {
"abort-controller": "3.0.0",
"nock": "12.0.3",
"node-fetch": "^2.6.7"
}
}