package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "postcss-selector-matches",
  3. "version": "4.0.0",
  4. "description": "PostCSS plugin to transform :matches() W3C CSS pseudo class to more compatible CSS selectors",
  5. "keywords": [
  6. "postcss",
  7. "postcss-plugin",
  8. "selectors",
  9. "selector",
  10. "matches"
  11. ],
  12. "author": "Maxime Thirouin",
  13. "license": "MIT",
  14. "repository": "https://github.com/postcss/postcss-selector-matches.git",
  15. "main": "dist/index.js",
  16. "files": [
  17. "dist"
  18. ],
  19. "dependencies": {
  20. "balanced-match": "^1.0.0",
  21. "postcss": "^7.0.2"
  22. },
  23. "devDependencies": {
  24. "babel-cli": "^6.26.0",
  25. "babel-plugin-add-module-exports": "^1.0.0",
  26. "babel-preset-env": "^1.7.0",
  27. "babel-preset-es2015": "^6.24.1",
  28. "babel-preset-stage-2": "^6.24.1",
  29. "babel-register": "^6.26.0",
  30. "eslint": "^5.6.0",
  31. "npmpub": "^4.1.0",
  32. "tape": "^4.9.1"
  33. },
  34. "scripts": {
  35. "lint": "eslint ./src/*.js ./test/*.js",
  36. "tape": "tape -r babel-register test/*.js",
  37. "test": "npm run lint && npm run babelify && npm run tape",
  38. "babelify": "babel src --out-dir dist",
  39. "prepublish": "npm run babelify",
  40. "release": "npmpub"
  41. }
  42. }