forked from JakeHartnell/react-images-upload
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 908 Bytes
/
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
{
"name": "react-images-upload",
"version": "1.2.9",
"private": false,
"main": "src/component/compiled.js",
"repository": {
"type": "git",
"url": "https://github.com/deseretdigital/react-images-upload"
},
"dependencies": {
"exif-js": "^2.3.0",
"react": "^16.12.0",
"react-flip-move": "^3.0.4"
},
"scripts": {
"prepublishOnly": "npm run transpile",
"transpile": "babel index.js --out-file compiled.js"
},
"babel": {
"presets": [
"env",
"react",
"stage-2"
]
},
"keywords": [
"image",
"upload",
"file",
"react image upload"
],
"license": "MIT",
"peerDependencies": {
"react": "^16.3.0",
"react-dom": "^16.3.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1"
}
}