-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.37 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.37 KB
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
{
"name": "@binden/compression",
"version": "2.0.1",
"description": "binden compression middleware",
"main": "dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"engines": {
"node": ">=20.11.0",
"npm": ">=10.2.4"
},
"scripts": {
"build": "tsc",
"build:remove": "rm -rf dist",
"ci:all": "npm ci && npm run prettier && npm run eslint && npm run commitlint && npm test && npm publish --dry-run && npm run docs:build && npm run coverage",
"commitlint": "commitlint --verbose --from=$( git rev-list --max-parents=0 $( git rev-parse --abbrev-ref HEAD ) )",
"coverage": "c8 npm test",
"docs:build": "typedoc",
"eslint": "eslint **/*.ts",
"eslint:fix": "npm run eslint -- --fix",
"install:clean": "npm install",
"postbuild": "prettier -c -w dist",
"postcoverage": "c8 report --reporter=lcov",
"postdocs:build": "prettier -c -w docs",
"postpublish": "npm run build:remove",
"prebuild": "npm run build:remove",
"preinstall:clean": "rm -rf node_modules package-lock.json",
"prepare": "husky",
"prepublishOnly": "npm run build",
"prettier": "prettier -c .",
"prettier:write": "prettier -c -w .",
"preversion": "npm run docs:build",
"test": "node --loader ts-node/esm --test test/*.test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/binden-js/compression.git"
},
"keywords": [
"compress",
"compression",
"br",
"gzip",
"deflate",
"binden"
],
"author": "Sergey Bakulin <sergey.bakulin.github@gmail.com>",
"license": "AGPL-3.0-only",
"directories": {
"doc": "docs",
"test": "test"
},
"bugs": {
"url": "https://github.com/binden-js/compression/issues"
},
"homepage": "https://github.com/binden-js/compression#readme",
"peerDependencies": {
"binden": "^2.0.2"
},
"devDependencies": {
"@binden/commitlint-config": "^2.1.0",
"@binden/semantic-release-config": "^3.0.0",
"@binden/tsconfig": "^2.0.0",
"c8": "^10.1.3",
"eslint-config-binden-ts": "^4.0.3",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"prettier": "^3.4.2",
"ts-node": "^10.9.2",
"typedoc": "^0.28.3",
"undici": "^7.11.0"
},
"publishConfig": {
"access": "public"
},
"funding": {
"type": "Coinbase Commerce",
"url": "https://commerce.coinbase.com/checkout/eddfb0f7-20e7-4e0d-8e04-232bbdf0b397"
}
}