-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.27 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.27 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
{
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18"
},
"name": "@commercetools/http-user-agent",
"version": "4.0.0",
"description": "Creates a proper HTTP User-Agent",
"keywords": [
"commercetools",
"http",
"user-agent"
],
"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-http-user-agent.cjs.js",
"module": "dist/commercetools-http-user-agent.esm.js",
"browser": {
"./dist/commercetools-http-user-agent.cjs.js": "./dist/commercetools-http-user-agent.browser.cjs.js",
"./dist/commercetools-http-user-agent.esm.js": "./dist/commercetools-http-user-agent.browser.esm.js"
},
"typings": "./dist/commercetools-http-user-agent.cjs.d.ts",
"types": "./dist/commercetools-http-user-agent.cjs.d.ts",
"preconstruct": {
"entrypoints": [
"./index.ts"
],
"umdName": "commercetoolsHttpUserAgent"
},
"repository": {
"type": "git",
"url": "https://github.com/commercetools/nodejs.git"
},
"files": [
"dist"
],
"scripts": {
"prebuild": "rimraf dist/**",
"build": "exit 0;"
}
}