-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.44 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.44 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
46
47
48
49
50
{
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18"
},
"name": "@commercetools/personal-data-erasure",
"version": "5.0.1",
"description": "Export and delete all data related to a single customer",
"main": "lib/main.js",
"bin": "bin/personal-data-erasure.js",
"scripts": {
"prebuild": "rimraf lib/**",
"build": "babel src --out-dir lib --config-file '../../babel.config.js'"
},
"repository": {
"type": "git",
"url": "https://github.com/commercetools/nodejs/tree/master/packages/personal-data-erasure"
},
"homepage": "https://commercetools.github.io/nodejs/cli/personal-data-erasure",
"bugs": "https://github.com/commercetools/nodejs/issues",
"keywords": [
"commercetools",
"customer",
"get",
"delete",
"json",
"personal-data"
],
"author": {
"name": "Daniel Eriksson",
"email": "daniel.eriksson@commercetools.com"
},
"license": "MIT",
"dependencies": {
"@commercetools/api-request-builder": "workspace:*",
"@commercetools/get-credentials": "workspace:*",
"@commercetools/sdk-client": "workspace:*",
"@commercetools/sdk-middleware-auth": "workspace:*",
"@commercetools/sdk-middleware-http": "workspace:*",
"@commercetools/sdk-middleware-user-agent": "workspace:*",
"lodash.flatten": "^4.4.0",
"node-fetch": "^2.6.7",
"pino": "^6.0.0",
"pretty-error": "^2.1.1",
"prompt-confirm": "^2.0.4",
"yargs": "^16.0.0"
}
}