forked from bradleyg/django-s3direct
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.4 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": "django-s3direct",
"version": "1.1.2",
"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.4",
"sha.js": "^2.4.8",
"spark-md5": "^3.0.0"
},
"devDependencies": {
"parcel-bundler": "^1.11.0",
"prettier": "^1.16.3"
},
"scripts": {
"test": "python runtests.py",
"build": "parcel build --no-source-maps src/index.js -d s3direct/static/s3direct/dist/",
"watch": "parcel watch src/index.js -d s3direct/static/s3direct/dist/",
"serve": "python example/manage.py runserver 0.0.0.0:8000",
"yapf": "yapf s3direct/ --recursive --in-place",
"prettier": "prettier src/**/*.js --write --single-quote",
"dev": "npm run serve & npm run watch",
"prod": "npm run yapf && npm run prettier && npm run build",
"pypi": "python setup.py sdist && twine upload dist/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bradleyg/django-s3direct.git"
},
"keywords": [
"django",
"S3",
"file",
"upload"
],
"author": {
"name": "Bradley Griffiths",
"email": "bradley.griffiths@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/bradleyg/django-s3direct/issues"
},
"homepage": "https://github.com/bradleyg/django-s3direct#readme"
}