package.json 876 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "postcss-font-variant",
  3. "version": "5.0.0",
  4. "description": "PostCSS plugin to transform W3C font-variant properties to more compatible CSS (font-feature-settings)",
  5. "keywords": [
  6. "css",
  7. "postcss",
  8. "postcss-plugin",
  9. "font",
  10. "variant",
  11. "font-variant"
  12. ],
  13. "author": "Maxime Thirouin",
  14. "license": "MIT",
  15. "repository": "https://github.com/postcss/postcss-font-variant.git",
  16. "files": [
  17. "index.js"
  18. ],
  19. "peerDependencies": {
  20. "postcss": "^8.1.0"
  21. },
  22. "devDependencies": {
  23. "jscs": "^3.0.7",
  24. "jshint": "^2.9.6",
  25. "npmpub": "^4.1.0",
  26. "postcss": "^8.1.0",
  27. "tape": "^5.0.0"
  28. },
  29. "scripts": {
  30. "lint": "npm run jscs && npm run jshint",
  31. "jscs": "jscs index.js test/index.js",
  32. "jshint": "jshint . --exclude-path .gitignore",
  33. "test": "npm run lint && tape test",
  34. "release": "npmpub"
  35. }
  36. }