-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
19 lines (19 loc) · 885 Bytes
/
Copy pathpackage.json
File metadata and controls
19 lines (19 loc) · 885 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"name": "@fidian/acss-live",
"version": "3.1.0",
"description": "ACSS rules generated live in your browser using a small library.",
"scripts": {
"build": "npm run minify && npm run compress && npm run sizes",
"compress": "npm run compress-gzip && npm run compress-brotli",
"compress-brotli": "which brotli && brotli < acss-live.min.js > acss-live.min.js.br || :",
"compress-gzip": "which gzip && gzip -9 < acss-live.min.js > acss-live.min.js.gz || :",
"minify": "sed '/DEBUG_START/,/DEBUG_END/d' acss-live.js | terser --compress --mangle --module /dev/stdin > acss-live.min.js",
"reinstall": "rm -rf package-lock.json node_modules && npm install",
"sizes": "wc -c acss-live.js acss-live.min.*"
},
"devDependencies": {
"terser": "5.46.1"
},
"main": "acss-live.js",
"license": "MIT"
}