forked from mbrevda/react-image
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.04 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@phenopolis/react-image",
"repository": "git://github.com/phenopolis/react-image.git",
"publishConfig": {
"registry":"https://npm.pkg.github.com"
},
"version": "4.0.4",
"description": "React Image is an <img> tag replacement for react, featuring preloader and multiple image fallback support",
"scripts": {
"build": "npm run build:types && NODE_ENV=production rollup -c && for i in cjs esm umd; do cp src/*test.js $i; done && rm -rf jsSrc",
"build:types": "tsc -p tsconfig.json",
"codecov": "codecov",
"dev": "webpack-dev-server",
"pretty": "prettier *.js src/**/*.js --write",
"isNewerThanPublished": "semver `npm -s view $npm_package_name dist-tags.${TAG:-latest}` --range \"<$npm_package_version\" > /dev/null && echo true || echo false",
"test": "jest --projects jest*.js"
},
"keywords": [
"reactjs",
"img",
"image",
"loader",
"fallback",
"react image",
"react-image",
"react img multi",
"react-img-multi",
"react image fallback",
"react image loader",
"react image preloader",
"react images",
"placeholder",
"placeholders",
"react image transition",
"react image fade",
"image transition",
"image fade"
],
"files": [
"*.md",
"es/*.js",
"esm/*.js",
"umd/*.js",
"cjs/*.js",
"!**/*.test.js",
"*.d.ts"
],
"module": "esm/index.js",
"main": "cjs/index.js",
"browser": "umd/index.js",
"types": "react-image.d.ts",
"author": "mbrevda@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/mbrevda/react-image/issues"
},
"homepage": "https://github.com/mbrevda/react-image#readme",
"devDependencies": {
"@babel/cli": "7.18.6",
"@babel/core": "7.18.6",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-object-rest-spread": "7.18.6",
"@babel/plugin-transform-runtime": "7.18.6",
"@babel/preset-env": "7.18.6",
"@babel/preset-react": "7.18.6",
"@babel/preset-typescript": "7.18.6",
"@babel/runtime": "7.18.6",
"@testing-library/react": "13.3.0",
"@types/jest": "28.1.4",
"@types/react": "18.0.14",
"@types/react-dom": "18.0.5",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "28.1.2",
"babel-loader": "8.2.5",
"babel-plugin-transform-inline-environment-variables": "0.4.4",
"codecov": "3.8.3",
"commander": "9.3.0",
"express": "4.18.1",
"html-webpack-plugin": "5.5.0",
"jest": "28.1.2",
"prettier": "2.7.1",
"react": "18.2.0",
"react-css-transition-replace": "4.0.5",
"react-dom": "18.2.0",
"rollup": "2.75.7",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-babel-minify": "10.0.0",
"rollup-plugin-node-resolve": "5.2.0",
"semver": "7.3.7",
"serve-static": "1.15.0",
"ts-jest": "28.0.5",
"ts-loader": "9.3.1",
"typescript": "4.7.4",
"webpack": "5.73.0",
"webpack-cli": "4.10.0",
"webpack-dev-server": "4.9.3"
},
"peerDependencies": {
"react": ">=16.8",
"react-dom": ">=16.8",
"@babel/runtime": ">=7"
},
"dependencies": {}
}