-
Notifications
You must be signed in to change notification settings - Fork 70
/
package.json
42 lines (42 loc) · 1.16 KB
/
package.json
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
{
"private": false,
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=14"
},
"name": "@commercetools/sdk-middleware-http",
"version": "7.0.4",
"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 <[email protected]> (https://github.com/emmenko)",
"main": "dist/sdk-middleware-http.cjs.js",
"module": "dist/sdk-middleware-http.es.js",
"browser": "dist/sdk-middleware-http.umd.js",
"repository": {
"type": "git",
"url": "https://github.com/commercetools/nodejs.git"
},
"files": [
"dist"
],
"scripts": {
"prebuild": "rimraf dist/**",
"build": "yarn build:bundles",
"build:bundles": "cross-env NODE_ENV=production rollup -c ../../rollup.config.js -n CommercetoolsSdkMiddlewareHttp -i ./src/index.js"
},
"devDependencies": {
"abort-controller": "3.0.0",
"nock": "12.0.3",
"node-fetch": "^2.6.7"
}
}