This repository has been archived by the owner on Dec 24, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
55 lines (55 loc) · 1.81 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
54
55
{
"name": "react-lazy-image",
"version": "1.1.0",
"description": "Component to render images and lazyload them if are in the viewport (or near to them).",
"main": "build/index.js",
"scripts": {
"lint": "eslint lib/index.js",
"prebuild": "npm run lint",
"build": "babel source -d build",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sergiodxa/react-lazy-image.git"
},
"keywords": [
"react",
"lazyload",
"image",
"ajax"
],
"author": "Sergio Daniel Xalambrí <sergio@xalambri.com.ar> (http://sergio.xalambri.com.ar/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/sergiodxa/react-lazy-image/issues"
},
"homepage": "https://github.com/sergiodxa/react-lazy-image#readme",
"peerDependencies": {
"react": "^15.0.0"
},
"devDependencies": {
"babel": "6.23.0",
"babel-cli": "6.26.0",
"babel-eslint": "6.1.2",
"babel-plugin-transform-merge-sibling-variables": "6.8.0",
"babel-plugin-transform-minify-booleans": "6.9.4",
"babel-plugin-transform-node-env-inline": "6.8.0",
"babel-plugin-transform-react-constant-elements": "6.23.0",
"babel-plugin-transform-react-inline-elements": "6.22.0",
"babel-plugin-transform-remove-console": "6.8.0",
"babel-plugin-transform-remove-debugger": "6.9.4",
"babel-plugin-transform-simplify-comparison-operators": "6.8.0",
"babel-plugin-transform-undefined-to-void": "6.9.4",
"babel-preset-es2015": "6.24.1",
"babel-preset-es2016": "6.24.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"eslint": "3.2.2",
"eslint-config-airbnb": "10.0.1",
"eslint-plugin-flowtype": "2.4.0",
"eslint-plugin-import": "1.16.0",
"eslint-plugin-jsx-a11y": "2.0.1",
"eslint-plugin-react": "6.0.0"
}
}