UNPKG

1.92 kBJSONView Raw
1{
2 "name": "responsive-loader",
3 "version": "2.0.0",
4 "description": "A webpack loader for responsive images",
5 "main": "lib/index.js",
6 "engines": {
7 "node": ">= 10.13.0"
8 },
9 "scripts": {
10 "clean-test": "rm -f test/**/build/*.jpg test/**/build/*.png test/**/build/*.webp test/**/build/**/*.jpg test/**/build/**/*.png test/**/build/**/*.webp test/**/build/test.js",
11 "build": "babel src/ -d lib/ --copy-files",
12 "lint": "eslint --ignore-path=.gitignore .",
13 "test": "flow && npm run build && npm run clean-test && webpack --config=./test/jimp/webpack.config.js && webpack --config=./test/sharp/webpack.config.js && jest"
14 },
15 "files": [
16 "lib",
17 "jimp.js",
18 "sharp.js"
19 ],
20 "repository": {
21 "type": "git",
22 "url": "git+https://github.com/dazuaz/responsive-loader.git"
23 },
24 "keywords": [
25 "webpack",
26 "responsive",
27 "loader",
28 "srcset"
29 ],
30 "author": "Jeremy Stucki <jeremy@interactivethings.com>",
31 "contributors": [
32 "Daniel Zuloaga <daniel@staticprops.com> (https://staticprops.com/)"
33 ],
34 "license": "BSD-3-Clause",
35 "bugs": {
36 "url": "https://github.com/dazuaz/responsive-loader/issues"
37 },
38 "homepage": "https://github.com/dazuaz/responsive-loader",
39 "peerDependencies": {
40 "webpack": "^4.0.0 || ^5.0.0"
41 },
42 "dependencies": {
43 "loader-utils": "^2.0.0",
44 "schema-utils": "^2.7.0"
45 },
46 "devDependencies": {
47 "@babel/cli": "^7.10.5",
48 "@babel/core": "^7.10.5",
49 "@babel/preset-env": "^7.10.4",
50 "@babel/preset-flow": "^7.10.4",
51 "babel-eslint": "^10.1.0",
52 "babel-jest": "^26.1.0",
53 "eslint": "^7.4.0",
54 "eslint-plugin-flowtype": "^5.2.0",
55 "flow-bin": "^0.129.0",
56 "jest": "^26.1.0",
57 "jimp": "^0.14.0",
58 "prettier": "^2.0.5",
59 "prettier-eslint": "^11.0.0",
60 "sharp": "^0.25.4",
61 "webpack": "^4.43.0",
62 "webpack-cli": "^3.3.12"
63 },
64 "jest": {
65 "testEnvironment": "node"
66 }
67}