forked from sidevesh/react-file-input-previews-base64
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.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
{
"name": "react-file-input-previews-base64",
"version": "1.0.6",
"description": "This package provides an easy to use, ready to go and customizable wrapper around file input, with option for image previews and returning file as base64 string.",
"main": "lib/index.js",
"scripts": {
"build": "node_modules/babel-cli/bin/babel.js src --out-dir lib",
"prepublish": "npm run build"
},
"babel": {
"presets": [
"es2015",
"react"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/SiDevesh/react-file-input-previews-base64.git"
},
"keywords": [
"react",
"file",
"input",
"image",
"preview",
"base64",
"upload",
"form"
],
"author": "SiDevesh",
"license": "MIT",
"bugs": {
"url": "https://github.com/SiDevesh/react-file-input-previews-base64/issues"
},
"homepage": "https://github.com/SiDevesh/react-file-input-previews-base64#readme",
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0"
},
"dependencies": {
"prop-types": "^15.5.10"
}
}