-
Notifications
You must be signed in to change notification settings - Fork 234
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #114 from boilerroomtv/multipart-upload
Multipart-upload using EvaporateJS
- Loading branch information
Showing
11 changed files
with
470 additions
and
495 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,3 +8,4 @@ example/db.sqlite3 | |
example/example/settings-test.py | ||
/build | ||
.idea | ||
/s3direct/static/s3direct/js/bundled.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
{ | ||
"name": "django-s3direct", | ||
"version": "0.4.10", | ||
"description": "Add direct uploads to S3 functionality with a progress bar to file input fields.", | ||
"directories": { | ||
"example": "example" | ||
}, | ||
"dependencies": { | ||
"js-cookie": "^2.1.4", | ||
"evaporate": "^2.1.1", | ||
"sha.js": "^2.4.8", | ||
"spark-md5": "^3.0.0" | ||
}, | ||
"devDependencies": { | ||
"browserify": "^14.3.0", | ||
"watchify": "^3.9.0" | ||
}, | ||
"scripts": { | ||
"test": "python runtests.py", | ||
"build": "browserify s3direct/static/s3direct/js/scripts.js -o s3direct/static/s3direct/js/bundled.js", | ||
"watch": "watchify s3direct/static/s3direct/js/scripts.js -o s3direct/static/s3direct/js/bundled.js --debug --verbose" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/bradleyg/django-s3direct.git" | ||
}, | ||
"keywords": [ | ||
"django", | ||
"S3", | ||
"file", | ||
"upload" | ||
], | ||
"author": "Bradley Griffiths", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/bradleyg/django-s3direct/issues" | ||
}, | ||
"homepage": "https://github.com/bradleyg/django-s3direct#readme" | ||
} |
Oops, something went wrong.