This repository has been archived by the owner on Apr 21, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.4 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
{
"name": "@dreamonkey/responsive-image-loader",
"version": "0.6.0",
"description": "A webpack loader to automagically bring your website images to a whole new level of responsiveness!",
"keywords": [
"webpack",
"loader",
"art direction",
"resolution switching",
"conversion",
"flexible",
"responsive",
"automatic"
],
"homepage": "https://github.com/dreamonkey/responsive-image-loader/blob/master/README.md",
"bugs": "https://github.com/dreamonkey/responsive-image-loader/issues",
"license": "MIT",
"author": "Paolo Caleffi <[email protected]> (https://github.com/IlCallo)",
"repository": "github:dreamonkey/responsive-image-loader",
"scripts": {
"lint": "eslint --ext .ts ./",
"test": "jest",
"test:debug": "node --inspect node_modules/.bin/jest --runInBand",
"///": "Note we're not using webpack to process the whole package code, so we cannot use absolute paths as TSC won't replace them with relative ones in the final build and cause errors due to wrong file resultion when used into a package",
"build": "rm -rf dist && tsc && copyfiles -f src/transformers/thumbor/.thumbor-env dist/src/transformers/thumbor && webpack",
"//": "'--tag latest' cannot be managed with publishConfig because of https://github.com/yarnpkg/yarn/issues/5310",
"deploy": "yarn build && yarn publish --tag latest"
},
"files": [
"dist/src"
],
"loader": "dist/src/responsive-image-loader.js",
"main": "dist/src/main.js",
"peerDependencies": {
"webpack": "^5.0.0"
},
"dependencies": {
"@types/sharp": "^0.29.5",
"file-type": "^16.5.3",
"got": "^11.8.2",
"lodash-es": "^4.17.21",
"sharp": "^0.30.1"
},
"devDependencies": {
"@types/json-schema": "7.0.9",
"@types/lodash-es": "^4.17.6",
"@types/memory-fs": "0.3.3",
"@types/mime-types": "2.1.1",
"@typescript-eslint/eslint-plugin": "5.11.0",
"@typescript-eslint/parser": "5.11.0",
"copyfiles": "2.4.1",
"eslint": "8.9.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-jest": "26.1.0",
"jest": "27.5.1",
"memory-fs": "0.5.0",
"raw-loader": "4.0.2",
"ts-essentials": "^9.1.2",
"ts-jest": "27.1.3",
"typescript": "^4.5.5",
"webpack": "^5.68.0",
"webpack-cli": "^4.9.2"
},
"engines": {
"node": ">= 12.22.1",
"npm": ">= 6.13.4",
"yarn": ">= 1.21.1"
},
"publishConfig": {
"access": "public"
}
}