-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1022 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
36
37
38
39
40
41
42
43
44
{
"name": "mnfy",
"description": "minify HTML/CSS/JS in a child process with caching",
"version": "4.2.0",
"author": "Jonathan Ong <[email protected]> (http://jongleberry.com)",
"license": "MIT",
"repository": "webdeps/mnfy",
"dependencies": {
"cssnano": "^3.3.1",
"html-minifier": "^3.0.0",
"lazyrequire": "^1.2.1",
"mkdirp": "0",
"mz": "^2.0.0",
"postcss": "^5.0.10",
"slave": "^1.2.2",
"uglify-js": "^2.4.24"
},
"devDependencies": {
"bluebird": "^3.4.6",
"istanbul": "0",
"mocha": "^3.0.0",
"rimraf": "^2.4.5"
},
"scripts": {
"test": "mocha --reporter spec",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot",
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot"
},
"keywords": [
"minify",
"minifier",
"css",
"js",
"child",
"process",
"subprocess"
],
"files": [
"slave.js",
"master.js",
"lib"
],
"main": "lib"
}