-
Notifications
You must be signed in to change notification settings - Fork 61
/
package.json
68 lines (68 loc) · 1.44 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
63
64
65
66
67
68
{
"name": "gulp-clean-css",
"description": "Minify css with clean-css.",
"homepage": "https://github.com/scniro/gulp-clean-css#readme",
"version": "4.2.0",
"author": "scniro",
"license": "MIT",
"bugs": {
"url": "https://github.com/scniro/gulp-clean-css/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/scniro/gulp-clean-css.git"
},
"files": [
"index.js"
],
"keywords": [
"css",
"clean",
"minify",
"uglify",
"clean-css",
"minify-css",
"gulp-minify-css",
"gulp-clean-css",
"gulpplugin",
"gulpfriendly"
],
"nyc": {
"report-dir": "./.coverage",
"reporter": [
"lcov",
"text"
],
"include": [
"index.js"
],
"sourceMap": false,
"temp-dir": "./.coverage/.nyc_output"
},
"dependencies": {
"clean-css": "4.2.1",
"plugin-error": "1.0.1",
"through2": "3.0.1",
"vinyl-sourcemaps-apply": "0.2.1"
},
"devDependencies": {
"chai": "4.2.0",
"chai-string": "1.5.0",
"coveralls": "3.0.9",
"express": "4.17.1",
"fancy-log": "1.3.3",
"gulp": "4.0.2",
"gulp-concat": "2.6.1",
"gulp-rename": "2.0.0",
"gulp-sass": "4.0.2",
"gulp-sourcemaps": "2.6.5",
"mocha": "7.0.0",
"nyc": "15.0.0",
"vinyl": "2.2.0"
},
"scripts": {
"cover": "./node_modules/.bin/nyc npm test",
"test": "./node_modules/.bin/mocha ./index.spec.js"
}
}