-
Notifications
You must be signed in to change notification settings - Fork 70
/
package.json
64 lines (64 loc) · 1.61 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"private": false,
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=14"
},
"name": "@commercetools/product-exporter",
"version": "4.0.0",
"description": "Exports products from the commercetools platform",
"keywords": [
"commercetools",
"products",
"projections",
"json",
"cli"
],
"repository": {
"type": "git",
"url": "https://github.com/commercetools/nodejs/tree/master/packages/product-exporter"
},
"homepage": "https://commercetools.github.io/nodejs/cli/product-exporter.html",
"bugs": "https://github.com/commercetools/nodejs/issues",
"license": "MIT",
"author": {
"name": "Williams Omayuku",
"email": "[email protected]"
},
"main": "lib/index.js",
"bin": {
"product-exporter": "bin/product-exporter.js"
},
"files": [
"bin",
"lib"
],
"scripts": {
"prebuild": "rimraf lib/**",
"build": "babel src --out-dir lib --config-file '../../babel.config.js'"
},
"dependencies": {
"@commercetools/api-request-builder": "^6.0.0",
"@commercetools/get-credentials": "^4.0.0",
"@commercetools/sdk-client": "^3.0.0",
"@commercetools/sdk-middleware-auth": "^7.0.0",
"@commercetools/sdk-middleware-http": "^7.0.0",
"@commercetools/sdk-middleware-user-agent": "^3.0.0",
"JSONStream": "^1.3.5",
"node-fetch": "^2.6.7",
"pino": "^6.0.0",
"pretty-error": "^2.1.1",
"yargs": "^16.0.0"
},
"resolutions": {
"y18n": "3.2.2",
"hosted-git-info": "4.0.2",
"yargs-parser": "13.1.2"
},
"devDependencies": {
"common-tags": "1.8.2",
"streamtest": "2.0.0"
}
}