-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
62 lines (62 loc) · 1.59 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
{
"name": "gzipper",
"version": "8.2.0",
"description": "CLI for compressing files.",
"main": "index.js",
"type": "module",
"scripts": {
"test": "vitest run --no-file-parallelism --test-timeout=10000",
"coverage": "npm run test --coverage --silent",
"eslint": "eslint \"**/*.ts\"",
"prettier": "prettier \"**/*.{ts,js,yaml,md,json}\" --write",
"tsc": "tsc --noEmit",
"build": "rimraf dist && tsc && copyfiles -f package.json README.md LICENSE CHANGELOG.md dist/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gios/gzipper.git"
},
"bin": "./bin/index.js",
"keywords": [
"compress",
"compression",
"brotli",
"deflate",
"zopfli",
"gzip",
"zlib",
"CLI",
"tool",
"angular"
],
"author": "Gios",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/gios/gzipper/issues"
},
"homepage": "https://github.com/gios/gzipper#readme",
"devDependencies": {
"@eslint/js": "^9.13.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.7.7",
"copyfiles": "^2.4.1",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-vitest": "^0.5.4",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"tsx": "^4.19.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.10.0",
"vitest": "^2.1.3"
},
"engines": {
"node": ">=20.11.0"
},
"dependencies": {
"@gfx/zopfli": "^1.0.15",
"commander": "^12.1.0",
"simple-zstd": "^1.4.2"
},
"packageManager": "[email protected]+sha256.50783dd0fa303852de2dd1557cd4b9f07cb5b018154a6e76d0f40635d6cee019"
}