-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy pathpackage.json
49 lines (49 loc) · 1.19 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
{
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18"
},
"name": "@commercetools/discount-code-generator",
"version": "4.0.0",
"description": "Generates discount codes for the commercetools platform, according to constraints.",
"keywords": [
"commercetools",
"discount",
"code",
"generator",
"cli"
],
"repository": {
"type": "git",
"url": "https://github.com/commercetools/nodejs/tree/master/packages/discount-code-generator"
},
"homepage": "https://commercetools.github.io/nodejs/cli/discount-code-generator.html",
"bugs": "https://github.com/commercetools/nodejs/issues",
"license": "MIT",
"contributors": [
"Williams Omayuku <[email protected]>"
],
"main": "lib/index.js",
"bin": {
"discount-code-gen": "bin/discountcodegen.js"
},
"files": [
"bin",
"lib"
],
"scripts": {
"prebuild": "rimraf lib/**",
"build": "babel src --out-dir lib --config-file '../../babel.config.js'"
},
"dependencies": {
"csv-parser": "^3.0.0",
"flat": "^5.0.0",
"json2csv": "^5.0.0",
"npmlog": "^4.1.2",
"pretty-error": "^2.1.1",
"tokgen": "^1.0.0",
"yargs": "^16.0.0"
}
}