package.json 982 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "postcss-minify-font-values",
  3. "version": "1.0.5",
  4. "description": "Minify font declarations with PostCSS",
  5. "main": "index.js",
  6. "files": [
  7. "index.js",
  8. "lib"
  9. ],
  10. "scripts": {
  11. "test": "tape test/*.js | tap-spec",
  12. "posttest": "eslint index.js lib test"
  13. },
  14. "author": "Bogdan Chadkin <trysound@yandex.ru>",
  15. "license": "MIT",
  16. "keywords": [
  17. "css",
  18. "font",
  19. "font-family",
  20. "font-weight",
  21. "optimise",
  22. "postcss-plugin"
  23. ],
  24. "devDependencies": {
  25. "eslint": "^1.3.1",
  26. "tap-spec": "^4.1.0",
  27. "tape": "^4.2.0"
  28. },
  29. "dependencies": {
  30. "object-assign": "^4.0.1",
  31. "postcss": "^5.0.4",
  32. "postcss-value-parser": "^3.0.2"
  33. },
  34. "repository": {
  35. "type": "git",
  36. "url": "git+https://github.com/TrySound/postcss-minify-font-values.git"
  37. },
  38. "bugs": {
  39. "url": "https://github.com/TrySound/postcss-minify-font-values/issues"
  40. },
  41. "homepage": "https://github.com/TrySound/postcss-minify-font-values"
  42. }