package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "gulp-sass",
  3. "version": "5.1.0",
  4. "description": "Gulp plugin for sass",
  5. "main": "index.js",
  6. "engines": {
  7. "node": ">=12"
  8. },
  9. "scripts": {
  10. "lint": "eslint --report-unused-disable-directives --ignore-path .gitignore .",
  11. "fix": "npm run lint -- --fix",
  12. "mocha": "mocha",
  13. "test": "npm run test:node-sass && npm run test:dart-sass",
  14. "test:node-sass": "mocha",
  15. "test:dart-sass": "mocha -- --sass"
  16. },
  17. "repository": {
  18. "type": "git",
  19. "url": "git+https://github.com/dlmanning/gulp-sass.git"
  20. },
  21. "keywords": [
  22. "gulpplugin",
  23. "sass",
  24. "gulp"
  25. ],
  26. "author": "David Manning",
  27. "license": "MIT",
  28. "bugs": {
  29. "url": "https://github.com/dlmanning/gulp-sass/issues"
  30. },
  31. "homepage": "https://github.com/dlmanning/gulp-sass#readme",
  32. "files": [
  33. "index.js"
  34. ],
  35. "dependencies": {
  36. "lodash.clonedeep": "^4.5.0",
  37. "picocolors": "^1.0.0",
  38. "plugin-error": "^1.0.1",
  39. "replace-ext": "^2.0.0",
  40. "strip-ansi": "^6.0.1",
  41. "vinyl-sourcemaps-apply": "^0.2.1"
  42. },
  43. "devDependencies": {
  44. "autoprefixer": "^10.4.0",
  45. "eslint": "^8.5.0",
  46. "eslint-config-airbnb-base": "^15.0.0",
  47. "eslint-plugin-import": "^2.25.3",
  48. "globule": "^1.3.3",
  49. "gulp": "^4.0.2",
  50. "gulp-postcss": "^9.0.1",
  51. "gulp-sourcemaps": "^3.0.0",
  52. "gulp-tap": "^2.0.0",
  53. "mocha": "^9.1.3",
  54. "node-sass": "^7.0.1",
  55. "postcss": "^8.4.5",
  56. "rimraf": "^3.0.2",
  57. "sass": "^1.45.1",
  58. "vinyl": "^2.2.1"
  59. }
  60. }