package.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "name": "gulp-clean-css",
  3. "description": "Minify css with clean-css.",
  4. "homepage": "https://github.com/scniro/gulp-clean-css#readme",
  5. "version": "4.3.0",
  6. "author": "scniro",
  7. "license": "MIT",
  8. "bugs": {
  9. "url": "https://github.com/scniro/gulp-clean-css/issues",
  10. "email": "scniro@outlook.com"
  11. },
  12. "repository": {
  13. "type": "git",
  14. "url": "https://github.com/scniro/gulp-clean-css.git"
  15. },
  16. "files": [
  17. "index.js"
  18. ],
  19. "keywords": [
  20. "css",
  21. "clean",
  22. "minify",
  23. "uglify",
  24. "clean-css",
  25. "minify-css",
  26. "gulp-minify-css",
  27. "gulp-clean-css",
  28. "gulpplugin",
  29. "gulpfriendly"
  30. ],
  31. "nyc": {
  32. "report-dir": "./.coverage",
  33. "reporter": [
  34. "lcov",
  35. "text"
  36. ],
  37. "include": [
  38. "index.js"
  39. ],
  40. "sourceMap": false,
  41. "temp-dir": "./.coverage/.nyc_output"
  42. },
  43. "dependencies": {
  44. "clean-css": "4.2.3",
  45. "plugin-error": "1.0.1",
  46. "through2": "3.0.1",
  47. "vinyl-sourcemaps-apply": "0.2.1"
  48. },
  49. "devDependencies": {
  50. "chai": "4.2.0",
  51. "chai-string": "1.5.0",
  52. "coveralls": "3.0.9",
  53. "express": "4.17.1",
  54. "fancy-log": "1.3.3",
  55. "gulp": "4.0.2",
  56. "gulp-concat": "2.6.1",
  57. "gulp-rename": "2.0.0",
  58. "gulp-sass": "4.0.2",
  59. "gulp-sourcemaps": "2.6.5",
  60. "mocha": "7.1.0",
  61. "nyc": "15.0.0",
  62. "vinyl": "2.2.0"
  63. },
  64. "scripts": {
  65. "cover": "./node_modules/.bin/nyc npm test",
  66. "test": "./node_modules/.bin/mocha ./index.spec.js"
  67. }
  68. }