package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "postcss-minify-params",
  3. "version": "1.2.2",
  4. "description": "Minify at-rule params with PostCSS",
  5. "keywords": [
  6. "postcss",
  7. "css",
  8. "postcss-plugin",
  9. "minify",
  10. "optimise",
  11. "params"
  12. ],
  13. "main": "dist/index.js",
  14. "files": [
  15. "dist"
  16. ],
  17. "author": "Bogdan Chadkin <trysound@yandex.ru>",
  18. "license": "MIT",
  19. "repository": "ben-eb/postcss-minify-params",
  20. "bugs": {
  21. "url": "https://github.com/ben-eb/postcss-minify-params/issues"
  22. },
  23. "homepage": "https://github.com/ben-eb/postcss-minify-params",
  24. "dependencies": {
  25. "alphanum-sort": "^1.0.1",
  26. "postcss": "^5.0.2",
  27. "postcss-value-parser": "^3.0.2",
  28. "uniqs": "^2.0.0"
  29. },
  30. "scripts": {
  31. "prepublish": "del-cli dist && cross-env BABEL_ENV=publish buble src -o dist",
  32. "pretest": "eslint src",
  33. "report": "nyc report --reporter=html",
  34. "test": "cross-env BABEL_ENV=test nyc mocha test --compilers js:buble/register"
  35. },
  36. "devDependencies": {
  37. "buble": "^0.12.5",
  38. "cross-env": "^2.0.0",
  39. "del-cli": "^0.2.0",
  40. "eslint": "^2.13.1",
  41. "eslint-config-postcss": "^2.0.2",
  42. "mocha": "^2.5.3",
  43. "nyc": "^7.0.0"
  44. },
  45. "eslintConfig": {
  46. "extends": "postcss",
  47. "env": {
  48. "mocha": true
  49. }
  50. },
  51. "nyc": {
  52. "sourceMap": true,
  53. "instrument": true
  54. }
  55. }