package.json 973 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "postcss-color-rebeccapurple",
  3. "version": "4.0.1",
  4. "description": "PostCSS plugin to transform W3C CSS rebeccapurple color to more compatible CSS (rgb())",
  5. "keywords": [
  6. "css",
  7. "postcss",
  8. "postcss-plugin",
  9. "color",
  10. "colour",
  11. "rgb",
  12. "rebeccapurple"
  13. ],
  14. "author": "Maxime Thirouin",
  15. "license": "MIT",
  16. "repository": {
  17. "type": "git",
  18. "url": "https://github.com/postcss/postcss-color-rebeccapurple.git"
  19. },
  20. "files": [
  21. "index.js"
  22. ],
  23. "engines": {
  24. "node": ">=6.0.0"
  25. },
  26. "dependencies": {
  27. "postcss": "^7.0.2",
  28. "postcss-values-parser": "^2.0.0"
  29. },
  30. "devDependencies": {
  31. "jscs": "^3.0.7",
  32. "jshint": "^2.9.6",
  33. "npmpub": "^4.1.0",
  34. "tape": "^4.9.1"
  35. },
  36. "scripts": {
  37. "lint": "npm run jscs && npm run jshint",
  38. "jscs": "jscs index.js test/index.js",
  39. "jshint": "jshint . --exclude-path .gitignore",
  40. "test": "npm run lint && tape test",
  41. "release": "npmpub"
  42. }
  43. }