web 3d图形渲染器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
1.0 KiB

  1. {
  2. "name": "postcss-selector-not",
  3. "version": "4.0.1",
  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. "postcss": "^7.0.2"
  25. },
  26. "devDependencies": {
  27. "babel-cli": "^6.26.0",
  28. "babel-plugin-add-module-exports": "^1.0.0",
  29. "babel-preset-env": "^1.7.0",
  30. "babel-register": "^6.26.0",
  31. "eslint": "^5.6.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. }
  41. }