This repository has been archived by the owner on Jun 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 2.79 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "web-img-optimizer",
"version": "0.11.1",
"description": "A tool for optimizing the images of a web page.",
"keywords": [
"web",
"image",
"performance",
"cli",
"core web vitals"
],
"license": "Unlicense",
"homepage": "https://github.com/IGassmann/web-img-optimizer",
"repository": "git://github.com/IGassmann/web-img-optimizer.git",
"bugs": "https://github.com/IGassmann/web-img-optimizer/issues",
"author": "Igor Gassmann <igor@igassmann.me> (https://igassmann.me/)",
"files": [
"/bin",
"/lib"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"wio": "./bin/run"
},
"scripts": {
"test": "jest",
"format": "prettier . --write --ignore-path ./.gitignore",
"lint": "eslint . --ext .js,.ts --fix --ignore-path ./.gitignore",
"build": "oclif pack tarballs",
"build:macos": "oclif pack macos",
"build:win": "oclif pack win",
"build:deb": "oclif pack deb",
"prepack": "rm -rf lib && tsc -b",
"prepare": "husky install"
},
"dependencies": {
"@oclif/core": "^1.3.3",
"@oclif/plugin-update": "^2.2.0",
"@oclif/plugin-version": "^1.0.4",
"@oclif/plugin-warn-if-update-available": "^2.0.4",
"form-data": "^4.0.0",
"image-type": "^4.1.0",
"is-svg": "^4.3.1",
"mem-fs": "^2.0.0",
"mem-fs-editor": "^9.0.0",
"node-fetch": "^2.6.7",
"puppeteer-core": "^10.4.0",
"registry-js": "^1.15.1",
"sharp": "^0.29.2",
"svgo": "^2.7.0",
"tslib": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"@babel/preset-typescript": "^7.14.5",
"@jest/types": "^27.2.5",
"@oclif/test": "^2.0.3",
"@types/chai": "^4.2.21",
"@types/jest": "^27.0.2",
"@types/node": "^14.1.0",
"@types/node-fetch": "^2.5.12",
"@types/sharp": "^0.29.2",
"@types/svgo": "^2.6.0",
"chai": "^4.3.4",
"eslint": "^7.30.0",
"eslint-config-oclif": "^4.0.0",
"eslint-config-oclif-typescript": "^1.0.2",
"eslint-config-prettier": "^8.3.0",
"husky": ">=7.0.4",
"jest": "^27.3.1",
"lint-staged": ">=11.2.6",
"oclif": "^3.2.5",
"prettier": "2.4.1",
"ts-node": "^10.1.0",
"typescript": "^4.4.4"
},
"engines": {
"node": "16.x"
},
"oclif": {
"commands": "./lib/commands",
"bin": "wio",
"plugins": [
"@oclif/plugin-update",
"@oclif/plugin-warn-if-update-available",
"@oclif/plugin-version"
],
"additionalHelpFlags": [
"-h"
],
"additionalVersionFlags": [
"-v"
],
"topicSeparator": " ",
"update": {
"s3": {
"bucket": "web-img-optimizer-releases"
}
},
"macos": {
"sign": "Developer ID Installer: Igor Gassmann (FBTMM9G54Z)",
"identifier": "me.igassmann.web-img-optimizer"
}
}
}