-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.92 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
{
"name": "@flexis/srcset-loader",
"version": "4.2.2",
"description": "Highly customizable loader for generating responsive images.",
"author": "dangreen",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/TrigenSoftware/flexis-srcset-loader"
},
"bugs": {
"url": "https://github.com/TrigenSoftware/flexis-srcset-loader/issues"
},
"main": "index.js",
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"lint": "trigen-scripts lint",
"jest": "trigen-scripts jest",
"checkSize": "trigen-scripts checkSize",
"test": "yarn build && trigen-scripts test",
"start": "trigen-scripts start",
"build:testBundle": "NODE_ENV=test babel-node test/buildTestBundle",
"build": "./scripts/buildPackage.sh",
"prepublishOnly": "if [ -f .gitignore ]; then exit 1; fi",
"cleanPublish": "yarn build && trigen-scripts cleanPublish"
},
"keywords": [
"srcset",
"image",
"picture",
"responsive",
"webpack",
"webpack-loader"
],
"peerDependencies": {
"webpack": "^4.0.0 || ^5.0.0"
},
"dependencies": {
"@babel/runtime": "^7.12.5",
"@flexis/srcset": "^4.2.0",
"core-js": "^3.8.3",
"loader-utils": "^2.0.0",
"p-limit": "^3.1.0",
"regenerator-runtime": "^0.13.7",
"vinyl": "^2.2.0"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@rollup/plugin-eslint": "^8.0.1",
"@size-limit/preset-small-lib": "^4.9.2",
"@trigen/scripts": "^7.3.1",
"@trigen/scripts-plugin-babel": "^7.3.1",
"@trigen/scripts-plugin-eslint": "^7.3.3",
"@trigen/scripts-plugin-jest": "^7.3.1",
"@trigen/scripts-plugin-rollup": "^7.1.0",
"@trigen/scripts-plugin-size-limit": "^7.3.1",
"@trigen/scripts-preset-lib": "^7.3.3",
"css-loader": "^5.0.1",
"eslint": "^7.19.0",
"memfs": "^3.2.0",
"rollup": "^2.38.3",
"size-limit": "^4.9.2",
"style-loader": "^2.0.0",
"webpack": "^5.19.0"
}
}