-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.29 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
{
"name": "caaf",
"version": "1.0.1",
"description": "CLI tool for minification, purification and optimization of HTML, JS, CSS and image assets",
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/tiaanduplessis/caaf.git"
},
"homepage": "https://github.com/tiaanduplessis/caaf",
"bugs": "https://github.com/tiaanduplessis/caaf/issues",
"author": {
"name": "Tiaan",
"email": "tiaanduplessis@hotmail.com",
"url": "tiaan.beer"
},
"bin": {
"caaf": "index.js"
},
"scripts": {
"start": "npm run dev",
"test": "npm run lint",
"lint": "standard --verbose",
"lint:fix": "standard --fix --verbose",
"precommit": "npm test"
},
"keywords": [
"minify",
"purify",
"optimize",
"uglify",
"html",
"css",
"js",
"png",
"jpeg",
"jpg",
"gif",
"svg",
"caaf"
],
"dependencies": {
"filendir": "^1.0.0",
"html-minifier": "^3.4.4",
"imagemin": "^5.3.1",
"imagemin-gifsicle": "^5.1.0",
"imagemin-mozjpeg": "^6.0.0",
"imagemin-pngquant": "^5.0.0",
"imagemin-svgo": "^5.2.1",
"node-dir": "^0.1.16",
"purify-css": "^1.1.9",
"uglify-js": "^3.0.4"
},
"devDependencies": {
"husky": "^0.13.3",
"standard": "^10.0.1"
}
}