-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 918 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
{
"name": "uglify-classes",
"version": "1.2.4",
"description": "This package help you to minify your classnames to optimize size of your app. It's work with a simple CLI, and can be triggered after a build. You can save up to 30% space on CSS files and 20% on HTML files.",
"main": "index.js",
"scripts": {
"setup-dev": "npm link",
"build-demo": "cd test && copyfiles ./src/**/* ./dist && uglify-classes --method random:2"
},
"bin": {
"uglify-classes": "bin/main.js"
},
"repository": {
"type": "git",
"url": "https://github.com/arnoclr/uglify-classes.git"
},
"keywords": [
"css",
"uglify",
"minify",
"compress",
"minification",
"minify-css",
"optimization"
],
"author": "Arno Cellarier",
"license": "MIT",
"dependencies": {
"command-line-args": "^5.2.0",
"glob": "^7.2.0"
},
"devDependencies": {
"copyfiles": "^2.4.1"
}
}