forked from founderlab/react-dropzone-s3-uploader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.2 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
{
"name": "react-dropzone-s3-uploader",
"version": "1.1.2-patch.4",
"description": "Drag and drop s3 file uploader via react-dropzone + react-s3-uploader",
"main": "lib/index.js",
"typings": "src/index.d.ts",
"author": {
"name": "Gwilym Humphreys",
"url": "https://github.com/gwilymhumphreys"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/founderlab/react-dropzone-s3-uploader"
},
"scripts": {
"prepublish": "rm -rf ./lib && babel ./src --ignore '/node_modules/' --out-dir ./lib",
"build": "rm -rf ./lib && babel ./src --ignore '/node_modules/' --out-dir ./lib",
"watch": "rm -rf ./lib && babel ./src --ignore '/node_modules/' --watch --out-dir ./lib",
"test": "eval $(cat test/.env) mocha test/**/*.tests.js"
},
"dependencies": {
"prop-types": "^15.5.8",
"react-dropzone": "^4.0.0",
"react-s3-uploader": "github:execonline-inc/react-s3-uploader#5e263195768313534cf36b3423ad0793549425dd"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.14.4",
"@babel/preset-react": "^7.13.13",
"expect": "^1.12.2"
},
"peerDependencies": {
"react": "*"
}
}