-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.29 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
{
"name": "s3-file-scan-cat",
"version": "1.2.8",
"description": "A utility to recursively scan a specified folder in S3 and concat JSON files within a single folder into a single gzip file.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/OliveTreeBible/s3-file-scan-cat.git"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"keywords": [
"aws",
"s3"
],
"author": "David Trotz",
"license": "",
"dependencies": {
"@aws-sdk/client-s3": "^3.569.0",
"@smithy/node-http-handler": "^3.0.0",
"@types/node": "^14.11.2",
"@types/node-os-utils": "^1.2.0",
"async-wait-until": "^2.0.1",
"moment": "^2.29.1",
"node-os-utils": "^1.3.2",
"npm-check-updates": "^16.14.20",
"typescript-logging": "^0.6.4"
},
"devDependencies": {
"prettier": "^2.1.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.0.3"
}
}