-
Notifications
You must be signed in to change notification settings - Fork 70
/
package.json
44 lines (44 loc) · 1.44 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
43
44
{
"private": false,
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=14"
},
"name": "@commercetools/sdk-middleware-user-agent",
"version": "3.0.0",
"description": "Middleware for setting the User-Agent on the HTTP request, to use with @commercetools/sdk-client",
"keywords": [
"commercetools",
"sdk",
"middleware",
"user-agent"
],
"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-user-agent.cjs.js",
"module": "dist/sdk-middleware-user-agent.es.js",
"browser": "dist/sdk-middleware-user-agent.umd.js",
"typings": "./dist/typings/index.d.ts",
"types": "./dist/typings/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/commercetools/nodejs.git"
},
"files": [
"dist"
],
"scripts": {
"prebuild": "rimraf dist/**",
"build": "yarn build:bundles && yarn build:typings",
"build:bundles": "cross-env NODE_ENV=production rollup -c ../../rollup.config.js -n CommercetoolsSdkMiddlewareUserAgent -i ./src/index.ts",
"build:typings": "tsc -p tsconfig.declarations.json --emitDeclarationOnly --declarationDir dist/typings"
},
"dependencies": {
"@commercetools/http-user-agent": "^3.0.0",
"@commercetools/sdk-types": "^0.1.2"
}
}