-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
44 lines (44 loc) · 1.02 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
{
"name": "cognito-backup",
"version": "4.1.0",
"description": "CLI for backing up and restoring AWS Cogntito User Pools",
"main": "cli.js",
"type": "module",
"scripts": {
"lint": "eslint .",
"test": "exit 0"
},
"repository": {
"type": "git",
"url": "https://github.com/mifi/cognito-backup.git"
},
"author": {
"name": "Mikael Finstad",
"email": "finstaden@gmail.com",
"url": "https://mifi.no"
},
"license": "MIT",
"files": [
"cli.js"
],
"bin": "cli.js",
"engines": {
"node": "^14.13.1 || >=16.0.0"
},
"dependencies": {
"@aws-sdk/client-cognito-identity-provider": "^3.121.0",
"@aws-sdk/credential-providers": "^3.121.0",
"JSONStream": "^1.3.5",
"debug": "^4.3.3",
"meow": "^10.1.2",
"mkdirp": "^1.0.4",
"p-map": "^5.3.0",
"sanitize-filename": "^1.6.3"
},
"devDependencies": {
"eslint": "^7.32.0 || ^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.2"
},
"packageManager": "yarn@4.1.1"
}