forked from nfroidure/gulp-minify-css
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.52 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
{
"name": "gulp-minify-css",
"description": "Minify css with clean-css.",
"version": "1.2.1",
"repository": "murphydanger/gulp-minify-css",
"author": "Jonathan Pollack <[email protected]> (gnobel.com)",
"contributors": [
"Shinnosuke Watanabe <[email protected]> (github.com/shinnn)"
],
"keywords": [
"gulpplugin",
"minify",
"optimize",
"optimise",
"compress",
"css",
"clean-css"
],
"license": "MIT",
"files": [
"index.js"
],
"scripts": {
"pretest": "eslint --config node_modules/@shinnn/eslintrc-node/rc.json --env mocha index.js test",
"test": "node --harmony_destructuring node_modules/mocha/bin/_mocha --full-trace",
"test-dot": "node --harmony_destructuring node_modules/mocha/bin/_mocha --reporter dot --full-trace",
"coverage": "node --harmony_destructuring node_modules/istanbul/lib/cli cover _mocha -- --full-trace",
"coveralls": "${npm_package_scripts_coverage} && istanbul-coveralls"
},
"dependencies": {
"clean-css": "^3.3.3",
"gulp-util": "^3.0.5",
"object-assign": "^4.0.1",
"readable-stream": "^2.0.0",
"vinyl-bufferstream": "^1.0.1",
"vinyl-sourcemaps-apply": "^0.1.4"
},
"devDependencies": {
"@shinnn/eslintrc-node": "^1.0.2",
"chai": "^3.0.0",
"eslint": "^0.23.0",
"from2-string": "^1.0.2",
"gulp-sourcemaps": "^1.5.2",
"gulp-stylus": "^2.0.5",
"istanbul": "^0.3.15",
"istanbul-coveralls": "^1.0.3",
"mocha": "^2.2.5",
"stream-combiner2": "^1.0.2",
"vinyl": "^0.5.0"
}
}