-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
87 lines (87 loc) · 2.14 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
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
{
"name": "dropzone",
"version": "6.0.0-beta.2",
"description": "Handles drag and drop of files for you.",
"keywords": [
"dragndrop",
"drag and drop",
"file upload",
"upload"
],
"homepage": "https://www.dropzone.dev/js",
"source": "src/dropzone.js",
"main": "dist/dropzone.js",
"module": "dist/dropzone.mjs",
"standalone": "dist/dropzone-min.js",
"browserslist": "defaults, > 0.25%",
"targets": {
"main": {
"source": "src/dropzone.js"
},
"module": {
"source": "src/dropzone.js"
},
"standalone": {
"source": "tool/dropzone-global.js",
"outputFormat": "global"
},
"built-test": {
"source": "test/unit-tests.js",
"distDir": "test/built/"
}
},
"maintainers": [
{
"name": "Matias Meno",
"email": "m@tias.me",
"web": "https://www.yesmeno.com"
}
],
"contributors": [
{
"name": "Matias Meno",
"email": "m@tias.me",
"web": "https://www.yesmeno.com"
}
],
"scripts": {
"watch": "parcel watch",
"build": "parcel build && yarn run css",
"css": "yarn sass src/:dist/ --style compressed",
"watch-css": "yarn sass src/:dist/ --watch --style compressed",
"test": "karma start test/karma.conf.js",
"start-test-server": "node test/test-server.js"
},
"bugs": {
"email": "m@tias.me",
"url": "https://github.com/dropzone/dropzone/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dropzone/dropzone.git"
},
"dependencies": {
"@swc/helpers": "^0.2.13",
"just-extend": "^5.0.0"
},
"devDependencies": {
"@parcel/transformer-inline-string": "^2.0.0",
"@parcel/transformer-sass": "^2.0.0",
"chai": "4.3.4",
"cypress": "^8.7.0",
"cypress-file-upload": "^5.0.8",
"karma": "^6.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^2.0.1",
"karma-sinon-chai": "^2.0.2",
"karma-spec-reporter": "^0.0.32",
"mocha": "^9.1.3",
"mocha-headless-chrome": "^3.0.0",
"node-static": "^0.7.11",
"parcel": "^2.0.0",
"sass": "^1.33.0",
"sinon": "^11.1.2",
"sinon-chai": "^3.5.0"
}
}