-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
63 lines (63 loc) · 1.74 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
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "s3-sync-client",
"version": "4.3.1",
"description": "AWS CLI s3 sync for Node.js provides a modern client to perform S3 sync operations between file systems and S3 buckets in the spirit of the official AWS CLI command",
"keywords": [
"aws",
"aws-cli",
"aws-cli-sync",
"aws-s3",
"aws-s3-sync",
"aws-sdk",
"aws-sync",
"s3-bucket",
"s3-sync",
"s3-syncing",
"sync"
],
"main": "dist/index.js",
"engines": {
"node": ">=16.0.0"
},
"files": [
"/dist/**/*"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"watch": "tsc -w",
"test": "ts-node -T ./test/S3SyncClient.test.ts",
"docgen": "typedoc --plugin typedoc-plugin-markdown --out docs src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jeanbmar/s3-sync-client.git"
},
"author": "Jean-Baptiste Martin",
"license": "MIT",
"bugs": {
"url": "https://github.com/jeanbmar/s3-sync-client/issues"
},
"homepage": "https://github.com/jeanbmar/s3-sync-client#readme",
"peerDependencies": {
"@aws-sdk/abort-controller": "^3.x.x",
"@aws-sdk/client-s3": "^3.x.x"
},
"devDependencies": {
"@aws-sdk/abort-controller": "^3.329.0",
"@aws-sdk/client-s3": "^3.332.0",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"eslint": "^8.40.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.8",
"tar": "^6.1.14",
"ts-node": "^10.9.1",
"typedoc": "^0.24.7",
"typedoc-plugin-markdown": "^3.15.3",
"typescript": "^5.0.4"
}
}