-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 807 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 807 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
{
"name": "tiny-s3-uploader",
"version": "1.3.2",
"description": "A tiny S3 uploader which doesn't need the fat aws-sdk.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "eslint src/**/*",
"lint-and-fix": "eslint src/**/* --fix",
"prepublish": "npm run build"
},
"devDependencies": {
"typescript": "4.5.5",
"@types/node": "^12.0.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MagicCap/tiny-s3-uploader.git"
},
"keywords": [
"s3"
],
"author": "Jake Gealer",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/MagicCap/tiny-s3-uploader/issues"
},
"homepage": "https://github.com/MagicCap/tiny-s3-uploader#readme",
"dependencies": {
"aws4": "1.11.0"
}
}