-
-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) 路 1.59 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) 路 1.59 KB
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
{
"name": "react-image-file-resizer",
"version": "0.4.8",
"description": "React module that can rescaled local images. You can change image's width, height, format, rotation and quality. It returns resized image's new base64 URI or Blob. The URI can be used as the source of an <Image> component.",
"main": "build/index.js",
"types": "./index.d.ts",
"files": [
"build",
"index.d.ts"
],
"scripts": {
"start": "webpack --watch",
"build": "webpack",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/onurzorluer/react-image-file-resizer.git"
},
"keywords": [
"react",
"image-resizer",
"image-file-resizer",
"image",
"photo",
"file",
"resize",
"resizer",
"compress",
"rotate",
"scaling",
"scale"
],
"author": {
"name": "Onur Zorluer",
"email": "zorlueronur@gmail.com",
"url": "https://zorluer.com"
},
"license": "MIT",
"homepage": "https://github.com/onurzorluer/react-image-file-resizer#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"all-contributors-cli": "^6.19.0",
"babel-cli": "^6.18.0",
"babel-core": "^6.26.3",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"jest": "^26.6.3",
"webpack": "^5.31.2",
"webpack-cli": "^4.6.0"
}
}