-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.48 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
{
"name": "@dreamonkey/responsive-image-plugin",
"version": "0.2.3",
"description": "A webpack plugin to automagically bring your website images to a whole new level of responsiveness!",
"keywords": [
"webpack",
"plugin",
"art direction",
"resolution switching",
"conversion",
"flexible",
"responsive",
"automatic"
],
"homepage": "https://github.com/dreamonkey/responsive-image-plugin/blob/master/README.md",
"bugs": "https://github.com/dreamonkey/responsive-image-plugin/issues",
"license": "MIT",
"author": "Paolo Caleffi <[email protected]> (https://github.com/IlCallo)",
"repository": "github:dreamonkey/responsive-image-plugin",
"scripts": {
"//": "'ts-essentials' and '@types/sharp' are marked as a dependencies to avoid TS errors in end user projects",
"lint": "eslint --ext .ts ./",
"test": "jest",
"test:debug": "node --inspect node_modules/.bin/jest --runInBand",
"build": "rm -rf dist && tsc --declaration && 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",
"ibc": "yarn install && yarn build && rm -rf node_modules"
},
"files": [
"dist/src"
],
"main": "dist/src/responsive-image-plugin.js",
"peerDependencies": {
"webpack": "^5.0.0"
},
"dependencies": {
"@types/sharp": "^0.29.5",
"file-type": "^16.5.3",
"fs-extra": "^10.0.1",
"got": "^11.8.2",
"lodash": "^4.17.21",
"probe-image-size": "^7.2.3",
"sharp": "^0.30.1",
"ts-essentials": "^9.1.2"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/json-schema": "7.0.9",
"@types/lodash": "^4.14.180",
"@types/memory-fs": "0.3.3",
"@types/mime-types": "2.1.1",
"@types/node": "^12.20.47",
"@types/probe-image-size": "^7.0.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-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"
}
}