-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.76 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "react-lazyloading-images",
"version": "3.0.1",
"description": "Lazy load image component for react",
"main": "lib",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack --watch",
"build": "concurrently \"cross-env NODE_ENV=production npm run build:webpack\" \"cross-env NODE_ENV=production npm run build:babel\"",
"build:dev": "concurrently \"cross-env NODE_ENV=development npm run build:webpack\" \"cross-env NODE_ENV=development npm run build:babel\"",
"build:webpack": "rimraf ./dist && webpack",
"build:babel": "rimraf ./lib && babel ./src -d ./lib",
"prepublish": "npm run build",
"publish": "npm publish .",
"lint": "npx eslint ./src --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JustFly1984/react-lazyload-image.git"
},
"keywords": [
"React",
"lazyload",
"image",
"component"
],
"dependencies": {
"intersection-observer": "^0.5.1"
},
"peerDependencies": {
"prop-types": "^15.6.2",
"react": "^16 || ^15.6.0"
},
"author": "Alexey Lyakhov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/JustFly1984/react-lazyload-image/issues"
},
"homepage": "https://github.com/JustFly1984/react-lazyload-image#readme",
"devDependencies": {
"@babel/cli": "7.2.3",
"@babel/core": "^7.2.2",
"@babel/node": "7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/plugin-transform-react-jsx": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"acorn": "^6.0.4",
"babel-eslint": "10.0.1",
"babel-loader": "^8.0.4",
"babel-plugin-transform-react-remove-prop-types": "^0.4.21",
"concurrently": "^4.1.0",
"cross-env": "^5.2.0",
"eslint": "^5.11.1",
"eslint-config-standard": "^12.0.0",
"eslint-config-standard-react": "7.0.2",
"eslint-import-resolver-webpack": "0.10.1",
"eslint-plugin-ascii": "1.0.0",
"eslint-plugin-babel": "5.3.0",
"eslint-plugin-dependencies": "2.4.0",
"eslint-plugin-filenames": "1.3.2",
"eslint-plugin-html": "^5.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-json": "1.3.2",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-no-inferred-method-name": "1.0.2",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-promiseparams": "1.0.8",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-react-functional-set-state": "1.2.1",
"eslint-plugin-react-perf": "2.0.9",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-you-dont-need-lodash-underscore": "6.4.0",
"prop-types": "^15.6.2",
"react": "^16.7.0",
"webpack": "^4.28.2",
"webpack-cli": "^3.1.2"
}
}