-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 3.29 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
105
106
107
108
109
110
111
{
"name": "react-libpixel",
"version": "1.0.1",
"description": "React Pixel is an extenction of React Image, which 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"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:danishyasin33/react-libpixel.git"
},
"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",
"libpixel",
"image processing",
"cdn delivery"
],
"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": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/danishyasin33/react-libpixel/issues"
},
"homepage": "https://github.com/danishyasin33/react-libpixel/#readme",
"devDependencies": {
"@babel/cli": "7.11.6",
"@babel/core": "7.11.6",
"@babel/plugin-proposal-class-properties": "7.10.4",
"@babel/plugin-proposal-object-rest-spread": "7.11.0",
"@babel/plugin-transform-runtime": "7.11.5",
"@babel/preset-env": "7.11.5",
"@babel/preset-react": "7.10.4",
"@babel/preset-typescript": "7.10.4",
"@babel/runtime": "7.11.2",
"@testing-library/react": "11.0.4",
"@types/jest": "26.0.13",
"@types/react": "16.9.49",
"@types/react-dom": "16.9.8",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "26.3.0",
"babel-loader": "8.1.0",
"babel-plugin-transform-inline-environment-variables": "0.4.3",
"codecov": "3.7.2",
"commander": "6.1.0",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.4",
"express": "4.17.1",
"html-webpack-plugin": "4.4.1",
"jest": "26.4.2",
"prettier": "2.1.1",
"react": "16.13.1",
"react-addons-test-utils": "15.6.2",
"react-css-transition-replace": "4.0.2",
"react-dom": "16.13.1",
"rollup": "2.26.11",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-babel-minify": "10.0.0",
"rollup-plugin-node-resolve": "5.2.0",
"semver": "7.3.2",
"serve-static": "1.14.1",
"ts-jest": "26.3.0",
"ts-loader": "8.0.3",
"typescript": "4.0.2",
"uglifyjs-webpack-plugin": "2.2.0",
"webpack": "4.44.1",
"webpack-cli": "3.3.12",
"webpack-dev-server": "3.11.0"
},
"peerDependencies": {
"react": ">=16.8",
"react-dom": ">=16.8",
"@babel/runtime": ">=7"
},
"dependencies": {}
}