aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/blueimp/jquery-file-upload/package.json
blob: 6270c65b198f4bdc91bd2d5aed5015d03416bfcf (plain) (blame)
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
  "name": "blueimp-file-upload",
  "version": "10.21.0",
  "title": "jQuery File Upload",
  "description": "File Upload widget with multiple file selection, drag&drop support, progress bar, validation and preview images, audio and video for jQuery. Supports cross-domain, chunked and resumable file uploads. Works with any server-side platform (Google App Engine, PHP, Python, Ruby on Rails, Java, etc.) that supports standard HTML form file uploads.",
  "keywords": [
    "jquery",
    "file",
    "upload",
    "widget",
    "multiple",
    "selection",
    "drag",
    "drop",
    "progress",
    "preview",
    "cross-domain",
    "cross-site",
    "chunk",
    "resume",
    "gae",
    "go",
    "python",
    "php",
    "bootstrap"
  ],
  "homepage": "https://github.com/blueimp/jQuery-File-Upload",
  "author": {
    "name": "Sebastian Tschan",
    "url": "https://blueimp.net"
  },
  "repository": {
    "type": "git",
    "url": "git://github.com/blueimp/jQuery-File-Upload.git"
  },
  "license": "MIT",
  "peerDependencies": {
    "jquery": ">=1.7"
  },
  "optionalDependencies": {
    "blueimp-canvas-to-blob": "3",
    "blueimp-load-image": "5",
    "blueimp-tmpl": "3"
  },
  "devDependencies": {
    "eslint": "6",
    "eslint-config-blueimp": "1",
    "eslint-config-prettier": "6",
    "eslint-plugin-jsdoc": "24",
    "eslint-plugin-prettier": "3",
    "prettier": "2",
    "stylelint": "13",
    "stylelint-config-prettier": "8",
    "stylelint-config-recommended": "3"
  },
  "stylelint": {
    "extends": [
      "stylelint-config-recommended",
      "stylelint-config-prettier"
    ],
    "ignoreFiles": [
      "css/*.min.css",
      "css/vendor/*",
      "test/vendor/*"
    ]
  },
  "eslintConfig": {
    "extends": [
      "blueimp",
      "plugin:jsdoc/recommended",
      "plugin:prettier/recommended"
    ],
    "env": {
      "browser": true
    }
  },
  "eslintIgnore": [
    "js/*.min.js",
    "test/vendor"
  ],
  "prettier": {
    "arrowParens": "avoid",
    "proseWrap": "always",
    "singleQuote": true,
    "trailingComma": "none"
  },
  "scripts": {
    "lint": "stylelint '**/*.css' && eslint .",
    "unit": "docker-compose run --rm mocha",
    "wdio": "docker-compose run --rm wdio",
    "test": "npm run lint && npm run unit && npm run wdio && npm run wdio -- conf/firefox.js",
    "posttest": "docker-compose down -v",
    "preversion": "npm test",
    "postversion": "git push --tags origin master && npm publish"
  },
  "files": [
    "css/jquery.fileupload-noscript.css",
    "css/jquery.fileupload-ui-noscript.css",
    "css/jquery.fileupload-ui.css",
    "css/jquery.fileupload.css",
    "img/loading.gif",
    "img/progressbar.gif",
    "js/cors/jquery.postmessage-transport.js",
    "js/cors/jquery.xdr-transport.js",
    "js/vendor/jquery.ui.widget.js",
    "js/jquery.fileupload-audio.js",
    "js/jquery.fileupload-image.js",
    "js/jquery.fileupload-process.js",
    "js/jquery.fileupload-ui.js",
    "js/jquery.fileupload-validate.js",
    "js/jquery.fileupload-video.js",
    "js/jquery.fileupload.js",
    "js/jquery.iframe-transport.js"
  ],
  "main": "js/jquery.fileupload.js"
}