forked from mattjarzeb/react-cloudinary-lazy-image
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1009 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
{
"name": "react-cloudinary-lazy-image",
"version": "1.3.4",
"description": "Lazy-loading React image component based on Cloudinary api",
"main": "index.js",
"repository": "https://github.com/mattjarzeb/react-cloudinary-lazy-image",
"homepage": "https://github.com/mattjarzeb/react-cloudinary-lazy-image#readme",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "./node_modules/.bin/babel src --out-dir .",
"prepublish": "npm run build"
},
"keywords": [
"react-component",
"cloudinary",
"lazy-loading",
"images"
],
"author": "Mateusz Jarzębski <[email protected]>",
"license": "MIT",
"dependencies": {
"@babel/polyfill": "^7.4.4",
"prop-types": "^15.7.2"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"standard": "^12.0.1",
"react": "^16.2.0"
},
"peerDependencies": {
"react": "^16.x.x"
}
}