package.json 1008 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "postcss-initial",
  3. "version": "4.0.1",
  4. "description": "PostCSS plugin to fallback initial keyword.",
  5. "keywords": [
  6. "postcss",
  7. "css",
  8. "postcss-plugin",
  9. "reset"
  10. ],
  11. "author": "Maksim Koretskiy <mr.green.tv@gmail.com>",
  12. "license": "MIT",
  13. "repository": {
  14. "type": "git",
  15. "url": "https://github.com/maximkoretskiy/postcss-initial.git"
  16. },
  17. "dependencies": {},
  18. "peerDependencies": {
  19. "postcss": "^8.0.0"
  20. },
  21. "devDependencies": {
  22. "chai": "^4.2.0",
  23. "eslint": "^4.18.2",
  24. "husky": "^4.3.0",
  25. "mocha": "^8.1.3",
  26. "postcss": "^8.0.5",
  27. "standard-version": "^9.0.0"
  28. },
  29. "scripts": {
  30. "lint": "eslint *.js ./lib/ ./test/",
  31. "test": "npm run lint && mocha",
  32. "tdd": "mocha -w --watch-extensions js,json,css",
  33. "release": "standard-version"
  34. },
  35. "husky": {
  36. "hooks": {
  37. "pre-commit": "npm test",
  38. "pre-push": "npm test"
  39. }
  40. },
  41. "standard-version": {
  42. "scripts": {
  43. "prerelease": "npm test"
  44. }
  45. }
  46. }