package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "postcss-selector-not",
  3. "version": "5.0.0",
  4. "description": "PostCSS plugin to transform :not() W3C CSS level 4 pseudo class to :not() CSS level 3 selectors",
  5. "keywords": [
  6. "postcss",
  7. "postcss-plugin",
  8. "selectors",
  9. "selector",
  10. "Not"
  11. ],
  12. "author": "Maxime Thirouin",
  13. "license": "MIT",
  14. "repository": {
  15. "type": "git",
  16. "url": "https://github.com/postcss/postcss-selector-not.git"
  17. },
  18. "main": "dist/index.js",
  19. "files": [
  20. "dist"
  21. ],
  22. "dependencies": {
  23. "balanced-match": "^1.0.0"
  24. },
  25. "peerDependencies": {
  26. "postcss": "^8.1.0"
  27. },
  28. "devDependencies": {
  29. "@babel/core": "^7.11.6",
  30. "@babel/cli": "^7.11.6",
  31. "@babel/preset-env": "^7.11.5",
  32. "@babel/register": "^7.11.5",
  33. "eslint": "^7.9.0",
  34. "postcss": "^8.1.0",
  35. "tape": "^5.0.1"
  36. },
  37. "scripts": {
  38. "lint": "eslint ./src/*.js ./test/*.js",
  39. "tape": "tape -r @babel/register test/*.js",
  40. "test": "npm run lint && npm run babelify && npm run tape",
  41. "babelify": "babel src --out-dir dist",
  42. "prepublishOnly": "npm run babelify"
  43. }
  44. }