-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
50 lines (50 loc) · 1.06 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
50
{
"name": "dynamodump",
"version": "2.0.1",
"description": "Node cli for exporting/importing schema, exporting/importing/wiping data of DynamoDB tables",
"main": "cli.js",
"type": "module",
"scripts": {
"test": "exit 0"
},
"repository": {
"type": "git",
"url": "https://github.com/mifi/dynamodump.git"
},
"author": {
"name": "Mikael Finstad",
"email": "[email protected]",
"url": "https://mifi.no"
},
"contributors": [
{
"name": "Sridhar Setti",
"email": "[email protected]",
"url": "http://github.com/ssetti"
},
{
"name": "Ian Dela Cruz",
"email": "[email protected]",
"url": "http://github.com/ianpogi5"
}
],
"license": "MIT",
"files": [
"cli.js"
],
"bin": {
"dynamodump": "cli.js"
},
"engines": {
"node": "12.20.0 || ^14.13.1 || >=16.0.0"
},
"dependencies": {
"JSONStream": "^1.3.5",
"aws-sdk": "^2.1082.0",
"debug": "^4.3.3",
"lodash": "^4.17.21",
"meow": "^10.1.2",
"p-map": "^5.3.0",
"sanitize-filename": "^1.6.3"
}
}