package.json 726 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "postcss-message-helpers",
  3. "version": "2.0.0",
  4. "description": "PostCSS helpers to throw or output GNU style messages",
  5. "keywords": [
  6. "css",
  7. "postcss",
  8. "postcss-plugins",
  9. "messages",
  10. "error",
  11. "warning"
  12. ],
  13. "author": "Maxime Thirouin",
  14. "license": "MIT",
  15. "repository": {
  16. "type": "git",
  17. "url": "https://github.com/MoOx/postcss-message-helpers.git"
  18. },
  19. "files": [
  20. "CHANGELOG.md",
  21. "LICENSE",
  22. "index.js"
  23. ],
  24. "devDependencies": {
  25. "jscs": "^1.6.2",
  26. "jshint": "^2.5.6",
  27. "postcss": "^4.0.2",
  28. "tape": "^3.0.0"
  29. },
  30. "scripts": {
  31. "lint": "jscs *.js **/*.js && jshint . --exclude-path .gitignore",
  32. "test": "npm run lint && tape test"
  33. }
  34. }