-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 1004 Bytes
/
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
{
"name": "@dgrammatiko/compress",
"version": "2.0.1",
"description": "Compresses any `.min.js` and `.min.css` files in the current folder (recursively). Any existing output files (`.gz`) will always be recreated.",
"type": "module",
"main": "index.js",
"engines": {
"node": ">=18.0.0"
},
"bin": {
"compress": "index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dgrammatiko/compress.git"
},
"author": "Dimitris Grammatikogiannis",
"license": "MIT",
"bugs": {
"url": "https://github.com/dgrammatiko/compress/issues"
},
"homepage": "https://github.com/dgrammatiko/compress#readme",
"scripts": {
"update": "npm install $(npm outdated | cut -d' ' -f 1 | sed '1d' | xargs -I '$' echo '$@latest' | xargs echo) --save-exact",
"prepublishOnly": "np --no-cleanup --yolo --no-publish",
"compress": "node index.js"
},
"dependencies": {
"@hpcc-js/wasm": "2.22.4"
},
"devDependencies": {
"np": "^10.0.0"
}
}