forked from scniro/gulp-clean-css
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 1.7 KB
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
69
70
71
72
73
74
75
76
{
"name": "gulp-cleaner-css",
"description": "Minify css with clean-css.",
"homepage": "https://github.com/andre487/gulp-cleaner-css#readme",
"version": "5.0.0",
"author": "scniro",
"contributors": [
"andre487"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/andre487/gulp-cleaner-css/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andre487/gulp-cleaner-css.git"
},
"files": [
"index.js"
],
"keywords": [
"css",
"clean",
"minify",
"uglify",
"clean-css",
"minify-css",
"gulp-minify-css",
"gulp-clean-css",
"gulp-cleaner-css",
"gulpplugin",
"gulpfriendly"
],
"nyc": {
"report-dir": "./.coverage",
"reporter": [
"lcov",
"text"
],
"include": [
"index.js"
],
"sourceMap": false,
"temp-dir": "./.coverage/.nyc_output"
},
"dependencies": {
"clean-css": "^5.3.3",
"plugin-error": "^2.0.1",
"through2": "^4.0.2",
"vinyl-sourcemaps-apply": "^0.2.1"
},
"devDependencies": {
"chai": "^4.3.10",
"chai-string": "^1.5.0",
"coveralls-next": "^6.0.1",
"express": "^4.18.2",
"fancy-log": "^2.0.0",
"gulp": "^5.0.1",
"gulp-concat": "^2.6.1",
"gulp-rename": "^2.0.0",
"gulp-sass": "^5.1.0",
"gulp-sourcemaps": "^2.6.5",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"sass": "^1.69.5",
"vinyl": "^3.0.0"
},
"scripts": {
"audit": "npm audit --omit=dev",
"deps": "npm install --no-audit && npm run audit",
"deps:ci": "npm ci --no-audit && npm run audit",
"cover": "nyc npm test",
"test": "mocha ./index.spec.js",
"release": "npm publish --registry https://registry.npmjs.org"
}
}