This repository has been archived by the owner on May 8, 2024. It is now read-only.
forked from EmilTholin/sqip-loader
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 1.88 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
{
"name": "@mole-inc/sqip-loader",
"version": "1.0.1",
"description": "Loads images and exports tiny SQIP previews as image/svg+xml data",
"main": "lib/index.js",
"directories": {
"lib": "lib",
"example": "example"
},
"files": [
"lib"
],
"keywords": [
"Webpack",
"svg",
"image",
"loader"
],
"scripts": {
"lint": "run-p lint:*",
"lint:eslint": "eslint . --ext .js --ignore-path .gitignore",
"lint:prettier": "prettier \"**/*.js\" --ignore-path .gitignore --check",
"fix": "run-s fix:eslint fix:prettier",
"fix:eslint": "npm run-script lint:eslint -- --fix",
"fix:prettier": "npm run-script lint:prettier -- --write",
"prepare": "husky install",
"release": "standard-version"
},
"license": "MIT",
"repository": "github:mole-inc/sqip-loader",
"dependencies": {
"loader-utils": "^2.0.0",
"schema-utils": "^3.0.0",
"sqip": "1.0.0-alpha.34",
"sqip-plugin-blur": "1.0.0-alpha.35",
"sqip-plugin-data-uri": "1.0.0-alpha.35",
"sqip-plugin-primitive": "1.0.0-alpha.36",
"sqip-plugin-svgo": "^1.0.0-alpha.35"
},
"peerDependencies": {
"file-loader": "*"
},
"devDependencies": {
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-react": "^7.23.1",
"husky": "^7.0.4",
"lint-staged": "^12.1.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"standard-version": "latest"
},
"resolutions": {
"sqip": "1.0.0-alpha.34"
},
"overrides": {
"sqip-plugin-svgo": {
"sqip@*": "1.0.0-alpha.34"
}
},
"engines": {
"node": ">=10.13.0",
"npm": ">=8.3.0"
},
"publishConfig": {
"access": "public"
},
"lint-staged": {
"*.js": [
"eslint --ignore-path .gitignore --fix",
"prettier --ignore-path .gitignore --write"
]
}
}