-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 947 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
35
36
37
38
39
40
41
42
43
44
{
"name": "@xelzs/code-size",
"version": "1.1.0",
"description": "Estimates the size of your files in different format (original, minified, gzipped, brotli).",
"main": "src/index.js",
"keywords": [
"file",
"estimate",
"size",
"size-calculation",
"minify",
"css",
"scss",
"stylesheet",
"gzip",
"brotli"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Axel SIMONET",
"license": "MIT",
"engines": {
"node": ">=10"
},
"homepage": "https://github.com/Xelzs/code-size#readme",
"repository": {
"type": "git",
"url": "https://github.com/Xelzs/code-size"
},
"bugs": {
"url": "https://github.com/Xelzs/code-size/issues"
},
"bin": {
"code-size": "bin/code-size"
},
"dependencies": {
"babel-minify": "^0.5.1",
"chalk": "^4.1.0",
"commander": "^6.2.0",
"node-sass": "^4.14.1",
"zlib": "^1.0.5"
}
}