forked from dropzone/dropzone
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
83 lines (83 loc) · 2.12 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
{
"name": "@deltablot/dropzone",
"version": "7.1.6",
"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",
"types": "dist/dropzone.d.ts",
"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": "Nicolas CARPi",
"web": "https://www.deltablot.com"
}
],
"scripts": {
"watch": "parcel watch",
"build": "parcel build && yarn run css && cp types/dropzone.d.ts dist",
"css": "yarn sass src/:dist/ --style compressed",
"watch-css": "yarn sass src/:dist/ --watch --style compressed",
"test": "karma start test/karma.conf.js",
"test:e2e": "cypress run",
"start-test-server": "yarn node test/test-server.js"
},
"bugs": {
"url": "https://github.com/NicolasCARPi/dropzone/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/NicolasCARPi/dropzone.git"
},
"dependencies": {
"@swc/helpers": "^0.5.13"
},
"resolutions": {
"body-parser": "^1.20.3"
},
"devDependencies": {
"@parcel/core": "^2.12.0",
"@parcel/transformer-inline-string": "^2.12.0",
"@parcel/transformer-sass": "^2.12.0",
"chai": "^4.5.0",
"cypress": "^13.15.0",
"express": "^4.21.0",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-mocha": "^2.0.1",
"karma-sinon-chai": "^2.0.2",
"karma-spec-reporter": "^0.0.36",
"mocha": "^10.7.3",
"mocha-headless-chrome": "^4.0.0",
"parcel": "^2.12.0",
"sass": "^1.79.3",
"sinon": "^18.0.1",
"sinon-chai": "^3.7.0"
},
"packageManager": "[email protected]"
}