forked from felixrieseberg/React-Dropzone-Component
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.46 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
{
"name": "react-dropzone-component",
"description": "A Dropzone Component for ReactJS",
"version": "2.0.0",
"license": "MIT",
"repository": "https://github.com/felixrieseberg/React-Dropzone",
"maintainers": [
{
"name": "Felix Rieseberg",
"email": "[email protected]",
"web": "http://www.felixrieseberg.com"
},
{
"name": "Erik Schlegel",
"email": "[email protected]",
"web": "erikschlegel.com"
}
],
"peerDependencies": {
"react-dom": "^0.14.0 || >0.14.0 || ^15.0.1",
"react": ">=0.13 || >0.14.0-alpha || >0.14.0 || ^15.0.1"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"jest-cli": "^0.8.1",
"react": "^15.3.1",
"react-dom": "^15.3.1",
"react-tools": "^0.13.3",
"standard": "^10.0.2",
"uglify-js": "^2.8.22",
"webpack": "^2.4.1"
},
"dependencies": {
"dropzone": "^4.3.0",
"extend": "^3.0.0"
},
"scripts": {
"build": "webpack && uglifyjs ./dist/react-dropzone.js -c -m -o ./dist/react-dropzone.min.js --source-map ./dist/react-dropzone.min.js.map",
"test": "standard ./src && jest",
"prepublish": "npm run build"
},
"jest": {
"scriptPreprocessor": "<rootDir>/preprocessor.js",
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/*"
]
},
"main": "dist/react-dropzone.js",
"standalone": "React-Dropzone"
}