-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 962 Bytes
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 962 Bytes
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
{
"name": "dynamodb-backup-restore",
"version": "0.6.0",
"description": "NPM package for Backup and Restore AWS DynamoDB",
"homepage": "https://github.com/shevchenkos/DynamoDbBackUp",
"main": "index.js",
"author": "shevchenkos",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/shevchenkos/DynamoDbBackUp"
},
"keywords": [
"gulp",
"javascript",
"nodejs",
"plugin",
"aws",
"lambda",
"dynamo",
"dynamodb",
"dynamodbstream",
"s3",
"restore",
"backup"
],
"dependencies": {
"lodash": "^4.17.21",
"node-zip": "^1.1.1",
"fs-extra": "^11.1.1"
},
"devDependencies": {
"aws-sdk": "^2.1691.0",
"eslint": "^8.57.0",
"gulp": "^4.0.2",
"gulp-jasmine": "^2.4.2",
"yargs": "^17.7.2"
},
"scripts": {
"lint": "eslint lib/**/*.js lambda/**/*.js *.js",
"test": "gulp unit-test"
},
"engines": {
"node": ">=18.0.0"
}
}