forked from donmccurdy/simple-dropzone
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.13 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.13 KB
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
{
"name": "simple-dropzone",
"version": "0.5.3",
"description": "A simple multi-file drag-and-drop input using vanilla JavaScript.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/donmccurdy/simple-dropzone.git"
},
"scripts": {
"dev": "budo demo/demo.js:bundle.js --live -d demo",
"dist": "browserify --standalone SimpleDropzone index.js -o dist/simple-dropzone.js && uglifyjs dist/simple-dropzone.js --mangle > dist/simple-dropzone.min.js",
"version": "npm run dist && git add -A dist",
"postversion": "git push && git push --tags && npm publish"
},
"keywords": [
"files",
"input",
"dropzone",
"drag",
"drop",
"upload"
],
"author": "Don McCurdy <dm@donmccurdy.com>",
"license": "MIT",
"dependencies": {
"zipjs-browserify": "^1.0.1"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babelify": "^8.0.0",
"browserify": "^16.1.0",
"budo": "^11.1.7",
"concurrently": "^3.5.1",
"gzip-size-cli": "^2.1.0",
"serve": "^6.4.11",
"uglify-es": "^3.3.9",
"watchify": "^3.10.0"
}
}