forked from mifi/cognito-backup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 934 Bytes
/
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": "2.1.1",
"description": "CLI for backing up and restoring AWS Cogntito User Pools",
"main": "cli.js",
"scripts": {
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "https://github.com/mifi/cognito-backup.git"
},
"author": {
"name": "Mikael Finstad",
"email": "[email protected]",
"url": "mifi.no"
},
"license": "MIT",
"files": [
"cli.js"
],
"bin": {
"cognito-backup": "cli.js"
},
"engines": {
"node": ">=8"
},
"dependencies": {
"JSONStream": "^1.2.1",
"aws-sdk": "^2.6.12",
"bluebird": "^3.4.6",
"bottleneck": "^2.5.0",
"debug": "^2.2.0",
"meow": "^3.7.0",
"mkdirp": "^0.5.1",
"sanitize-filename": "^1.6.1",
"stream-to-promise": "^2.2.0"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.12.0"
}
}