-
Notifications
You must be signed in to change notification settings - Fork 70
/
package.json
50 lines (50 loc) · 1.37 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
{
"private": false,
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=14"
},
"name": "@commercetools/discount-code-importer",
"version": "4.0.1",
"description": "Import discount codes to the commercetools platform.",
"keywords": [
"commercetools",
"discount",
"code",
"generator",
"import",
"importer"
],
"repository": {
"type": "git",
"url": "https://github.com/commercetools/nodejs/tree/master/packages/discount-code-importer"
},
"homepage": "https://commercetools.github.io/nodejs/cli/discountCodeImporter.html",
"bugs": "https://github.com/commercetools/nodejs/issues",
"license": "MIT",
"contributors": [
"Williams Omayuku <[email protected]>"
],
"main": "lib/index.js",
"files": [
"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/sdk-client": "^3.0.0",
"@commercetools/sdk-middleware-auth": "^7.0.0",
"@commercetools/sdk-middleware-http": "^7.0.2",
"@commercetools/sdk-middleware-queue": "^3.0.0",
"@commercetools/sdk-middleware-user-agent": "^3.0.0",
"@commercetools/sync-actions": "^5.0.0",
"lodash": "^4.17.21",
"node-fetch": "^2.6.7",
"npmlog": "^4.1.2"
}
}