-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.1 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
{
"name": "uppy-aws-amplify",
"version": "1.0.5",
"description": "Upload to AWS Amplify Storage (S3) with Uppy",
"main": "dist/index.js",
"private": false,
"author": "Joel Van Horn",
"license": "MIT",
"type": "module",
"files": [
"dist/**/*"
],
"scripts": {
"test": "",
"build": "babel src -d dist",
"prepare": "npm run build",
"prepublishOnly": "npm version patch",
"version": "git add -A",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joelvh/uppy-aws-amplify.git"
},
"keywords": [
"upload",
"uppy",
"aws",
"amplify",
"aws-amplify",
"s3"
],
"bugs": {
"url": "https://github.com/joelvh/uppy-aws-amplify/issues"
},
"homepage": "https://github.com/joelvh/uppy-aws-amplify#readme",
"dependencies": {
"@uppy/core": "^1.0",
"@uppy/utils": "^1.0"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"devolution": "^1.1.2"
}
}