-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
57 lines (57 loc) · 1.62 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
{
"name": "amplify-s3-chunk-upload",
"version": "2.0.1",
"description": "A custom storage upload plugin for AWS Amplify. Instead of reading file completely in memory, it helps to read file chunk by chunk.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/walvekarnikhil/amplify-s3-chunk-upload"
},
"bugs": {
"url": "https://github.com/walvekarnikhil/amplify-s3-chunk-upload/issues"
},
"homepage": "https://github.com/walvekarnikhil/amplify-s3-chunk-upload",
"scripts": {
"prebuild": "npm run lint",
"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": "git add -A src",
"postversion": "git push && git push --tags"
},
"keywords": [
"amplify",
"AWS-S3",
"Large file upload"
],
"author": "",
"license": "ISC",
"dependencies": {
"@aws-amplify/core": "^3.8.14",
"@aws-amplify/storage": "^3.3.22",
"@aws-sdk/client-s3": "3.4.1",
"@aws-sdk/s3-request-presigner": "3.4.1",
"@aws-sdk/util-create-request": "3.4.1",
"@aws-sdk/util-format-url": "3.4.1",
"axios": "0.21.1",
"events": "^3.1.0"
},
"resolutions": {
"@aws-sdk/fetch-http-handler": "3.4.1",
"@aws-sdk/client-s3": "3.4.1"
},
"readme": "README.md",
"devDependencies": {
"prettier": "^2.1.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.0.3"
},
"peerDependencies": {
"@aws-amplify/storage": "3.3.22"
}
}