package.json 956 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "postcss-initial",
  3. "version": "3.0.4",
  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. "postcss": "^7.0.2"
  19. },
  20. "devDependencies": {
  21. "chai": "3.5.0",
  22. "eslint": "^4.18.2",
  23. "husky": "^3.0.9",
  24. "mocha": "^3.3.0",
  25. "standard-version": "^8.0.1"
  26. },
  27. "scripts": {
  28. "lint": "eslint *.js ./lib/ ./test/",
  29. "test": "npm run lint && mocha",
  30. "tdd": "mocha -w --watch-extensions js,json,css",
  31. "release": "standard-version"
  32. },
  33. "husky": {
  34. "hooks": {
  35. "pre-commit": "npm test",
  36. "pre-push": "npm test"
  37. }
  38. },
  39. "standard-version": {
  40. "scripts": {
  41. "prerelease": "npm test"
  42. }
  43. }
  44. }