package.json 934 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "postcss-zindex",
  3. "version": "2.2.0",
  4. "description": "Reduce z-index values with PostCSS.",
  5. "main": "index.js",
  6. "scripts": {
  7. "lint": "jshint index.js lib/*.js --reporter node_modules/jshint-stylish/stylish.js",
  8. "test": "tape test.js | tap-spec"
  9. },
  10. "files": [
  11. "LICENSE-MIT",
  12. "index.js",
  13. "lib"
  14. ],
  15. "keywords": [
  16. "css",
  17. "normalize",
  18. "optimise",
  19. "optimisation",
  20. "postcss",
  21. "postcss-plugin",
  22. "z-index"
  23. ],
  24. "license": "MIT",
  25. "dependencies": {
  26. "has": "^1.0.1",
  27. "postcss": "^5.0.4",
  28. "uniqs": "^2.0.0"
  29. },
  30. "devDependencies": {
  31. "jshint": "^2.8.0",
  32. "jshint-stylish": "^2.0.1",
  33. "tap-spec": "^4.1.0",
  34. "tape": "^4.2.0"
  35. },
  36. "homepage": "https://github.com/ben-eb/postcss-zindex",
  37. "author": {
  38. "name": "Ben Briggs",
  39. "email": "beneb.info@gmail.com",
  40. "url": "http://beneb.info"
  41. },
  42. "repository": "ben-eb/postcss-zindex"
  43. }