package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "name": "gulp-postcss",
  3. "nyc": {
  4. "lines": 100,
  5. "statements": 100,
  6. "functions": 100,
  7. "branches": 100,
  8. "reporter": [
  9. "lcov",
  10. "text"
  11. ],
  12. "cache": true,
  13. "all": true,
  14. "check-coverage": true
  15. },
  16. "version": "9.0.1",
  17. "description": "PostCSS gulp plugin",
  18. "main": "index.js",
  19. "engines": {
  20. "node": "^10 || ^12 || >=14"
  21. },
  22. "scripts": {
  23. "pretest": "eslint *.js",
  24. "test": "nyc mocha test.js"
  25. },
  26. "repository": {
  27. "type": "git",
  28. "url": "https://github.com/postcss/gulp-postcss.git"
  29. },
  30. "keywords": [
  31. "gulpplugin",
  32. "postcss",
  33. "postcss-runner",
  34. "css"
  35. ],
  36. "author": "Andrey Kuzmin <unsoundscapes@gmail.com>",
  37. "license": "MIT",
  38. "bugs": {
  39. "url": "https://github.com/postcss/gulp-postcss/issues"
  40. },
  41. "homepage": "https://github.com/postcss/gulp-postcss",
  42. "dependencies": {
  43. "fancy-log": "^1.3.3",
  44. "plugin-error": "^1.0.1",
  45. "postcss-load-config": "^3.0.0",
  46. "vinyl-sourcemaps-apply": "^0.2.1"
  47. },
  48. "devDependencies": {
  49. "eslint": "^5.16.0",
  50. "gulp-sourcemaps": "^2.6.5",
  51. "mocha": "^5.2.0",
  52. "nyc": "^12.0.2",
  53. "postcss": "^8.0.0",
  54. "proxyquire": "^2.1.0",
  55. "sinon": "^6.3.5",
  56. "vinyl": "^2.2.0"
  57. },
  58. "peerDependencies": {
  59. "postcss": "^8.0.0"
  60. }
  61. }