forked from FormidableLabs/react-progressive-image
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.47 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.47 KB
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
{
"name": "react-progressive-graceful-image",
"version": "0.7.0",
"description": "Graceful Progressive image loading for React",
"main": "dist.js",
"typings": "src/index.d.ts",
"scripts": {
"build": "babel src/index.js --out-file dist.js",
"umd": "webpack --config webpack.config.umd.js",
"lint": "eslint {__tests__,src}/*.js",
"flow": "flow",
"test:only": "jest",
"test": "npm run lint && npm run test:only",
"prepublish": "npm run pretty && npm run test && npm run build",
"demo": "webpack-dev-server --inline --hot --config demo/webpack.config.js --content-base demo/",
"pretty": "prettier --write '{__tests__,src}/*.js'"
},
"keywords": [
"react",
"progressive",
"graceful",
"images",
"loading",
"lazyloading",
"intersectionObserver"
],
"repository": "https://github.com/sanishkr/react-progressive-graceful-image.git",
"homepage": "https://codesandbox.io/s/react-progressive-graceful-image-simple-example-h8jh4",
"author": "Sanish <sanishkr@gmail.com>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.1",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.7",
"babel-core": "^7.0.0-0",
"babel-eslint": "^9.0.0",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.2",
"enzyme": "^3.11.0",
"eslint": "^5.6.0",
"eslint-config-formidable": "^4.0.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-babel": "^5.2.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-flowtype": "^2.50.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-react": "^7.11.1",
"flow-bin": "^0.81.0",
"jest": "^23.6.0",
"prettier": "^1.14.2",
"raf": "^3.4.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^16.5.1",
"uglifyjs-webpack-plugin": "^2.0.0",
"webpack": "^4.19.0",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.8"
},
"peerDependencies": {
"react": "^15.0.0-0 || ^16.0.0-0 || ^17.0.0-0 || ^18.0.0-0 || ^19.0.0-0",
"react-dom": "^15.0.0-0 || ^16.0.0-0 || ^17.0.0-0 || ^18.0.0-0 || ^19.0.0-0"
},
"sideEffects": false,
"dependencies": {
"@researchgate/react-intersection-observer": "^1.3.5"
}
}