-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
49 lines (49 loc) · 1.21 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
49
{
"name": "simple-dropzone",
"version": "0.8.3",
"description": "A simple multi-file drag-and-drop input using vanilla JavaScript.",
"source": "index.js",
"main": "dist/simple-dropzone.js",
"module": "dist/simple-dropzone.module.js",
"repository": {
"type": "git",
"url": "git+https://github.com/donmccurdy/simple-dropzone.git"
},
"scripts": {
"dev": "concurrently \"microbundle watch --name SimpleDropzone --external none\" \"serve .\"",
"dist": "microbundle --name SimpleDropzone --external none",
"test": "browserify test.js | tape-run | tap-spec",
"version": "npm run dist",
"postversion": "git push && git push --tags && npm publish"
},
"keywords": [
"files",
"input",
"dropzone",
"drag",
"drop",
"upload"
],
"author": "Don McCurdy <[email protected]>",
"license": "MIT",
"dependencies": {
"zip-js-esm": "^1.1.1"
},
"devDependencies": {
"browserify": "17.0.1",
"concurrently": "9.1.2",
"microbundle": "0.15.1",
"serve": "14.2.4",
"tap-spec": "5.0.0",
"tape": "5.9.0",
"tape-run": "11.0.0"
},
"files": [
"dist/",
"index.js",
"README.md",
"LICENSE",
"package.json",
"package-lock.json"
]
}