-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
63 lines (63 loc) · 1.56 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "css-purge",
"version": "3.1.8",
"description": "A CSS tool written in Node JS as a command line app or library for the purging, burning, reducing, shortening, compressing, cleaning, trimming and formatting of duplicate, extra, excess or bloated CSS.",
"homepage": "http://rbtech.github.io/css-purge",
"repository": {
"type": "git",
"url": "https://github.com/rbtech/css-purge.git"
},
"bugs": {
"url": "https://github.com/rbtech/css-purge/issues"
},
"readmeFilename": "README.md",
"main": "./lib/css-purge.js",
"scripts": {
"start": "node css-purge.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"css-purge": "./css-purge.js"
},
"requires": true,
"author": "Andrew Quan <[email protected]> (http://redblueprint.com)",
"license": "MIT",
"lockfileVersion": 1,
"keywords": [
"css",
"css minifier",
"minifier",
"purge",
"stylesheet",
"duplicate",
"deduplicate",
"merge",
"group",
"duplicate css",
"duplicate rules",
"duplicate properties",
"clean css",
"purging css",
"burning css",
"reducing css",
"shortening css",
"compressing css",
"cleaning css",
"trimming css",
"formatting css",
"unused css",
"not used css"
],
"dependencies": {
"cli-color": "^1.4.0",
"commander": "^2.19.0",
"css": "^2.2.4",
"htmlparser2": "^3.10.0",
"jsdom": "^16.5.0",
"parse-css-font": "^2.0.2",
"request": "^2.88.0",
"through2": "^2.0.5",
"valid-url": "^1.0.9"
},
"devDependencies": {}
}