forked from cxoltero/pipeline-minify-css
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.35 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
{
"name": "pipeline-minify-css",
"version": "1.0.0",
"description": "Gulp pipeline to minify and optionally concatenate CSS files",
"author": "Juan P. Osorio <[email protected]> (https://github.com/jpoo90)",
"contributors": [
{
"name": "Owen Buckley",
"email": "[email protected]"
},
{
"name": "Chris Sharon",
"email": "[email protected]"
}
],
"scripts": {
"test": "mocha test/index.spec.js -w"
},
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/kenzanlabs/pipeline-minify-css"
},
"keywords": [
"Gulp",
"Tools",
"Keystone",
"Pipeline",
"Concat",
"Minification",
"CSS"
],
"preferGlobal": false,
"private": false,
"publishConfig": {
"registry": "http://registry.npmjs.org/"
},
"engines": {
"node": ">=0.10.3",
"npm": ">=1.0.20"
},
"analyze": true,
"license": "Apache-2.0",
"dependencies": {
"gulp-concat": "2.6.0",
"gulp-if": "2.0.0",
"gulp-minify-css": "1.2.1",
"gulp-rename": "1.2.2",
"gulp-sourcemaps": "1.6.0",
"lazypipe": "1.0.1",
"pipeline-handyman": "1.0.0"
},
"devDependencies": {
"chai": "3.3.0",
"del": "2.0.2",
"gulp": "3.9.0",
"path": "0.12.7",
"pipeline-test-node": "0.4.0",
"pipeline-validate-js": "0.3.0",
"stream-assert": "2.0.3"
}
}