package.json 939 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "django-s3file",
  3. "version": "1.0.0",
  4. "description": "A lightweight file uploader input for Django and Amazon S3",
  5. "directories": {
  6. "test": "tests"
  7. },
  8. "scripts": {
  9. "test": "standard",
  10. "postinstall": "uglifyjs --compress -o s3file/static/s3file/js/s3file.min.js s3file/static/s3file/js/s3file.js",
  11. "minify": "uglifyjs --compress -o s3file/static/s3file/js/s3file.min.js s3file/static/s3file/js/s3file.js",
  12. "lint:js": "standard"
  13. },
  14. "repository": {
  15. "type": "git",
  16. "url": "git+https://github.com/codingjoe/django-s3file.git"
  17. },
  18. "keywords": [
  19. "aws",
  20. "s3",
  21. "django",
  22. "file"
  23. ],
  24. "author": "Johannes Hoppe <info@johanneshoppe.com>",
  25. "license": "MIT",
  26. "bugs": {
  27. "url": "https://github.com/codingjoe/django-s3file/issues"
  28. },
  29. "homepage": "https://github.com/codingjoe/django-s3file#readme",
  30. "devDependencies": {
  31. "standard": "*",
  32. "uglify-js": "*"
  33. }
  34. }