-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 955 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 955 Bytes
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
{
"author": "Benjamin Horsleben <benjamin@fizkerinc.dk> (http://fizkerinc.dk)",
"name": "minifier",
"description": "A simple tool for minifying CSS/JS without a big setup",
"keywords": "javascript js css minify minifier build",
"version": "0.8.1",
"license": "WTFPL",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/fizker/minifier.git"
},
"bugs": "https://github.com/fizker/minifier/issues",
"dependencies": {
"commander": "^2.8.1",
"css-resolve-import": "^0.1.1",
"fmerge": "^1.2.0",
"glob": "^7.1.1",
"hogan.js": "^3.0.2",
"sqwish": "~0.2.2",
"uglify-js": "^2.4.24"
},
"bin": {
"minify": "index.js"
},
"scripts": {
"test": "mocha"
},
"devDependencies": {
"chai": "^3.2.0",
"finc-chai-helpers": "~0.1.0",
"fzkes": "^0.14.1",
"mocha": "^3.2.0"
},
"optionalDependencies": {},
"engines": {
"node": "^4.4.7 || >=6.3.0"
}
}