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.

35 lines
847 B

  1. {
  2. "name": "postcss-font-variant",
  3. "version": "4.0.1",
  4. "description": "PostCSS plugin to transform W3C font-variant properties to more compatible CSS (font-feature-settings)",
  5. "keywords": [
  6. "css",
  7. "postcss",
  8. "postcss-plugin",
  9. "font",
  10. "variant",
  11. "font-variant"
  12. ],
  13. "author": "Maxime Thirouin",
  14. "license": "MIT",
  15. "repository": "https://github.com/postcss/postcss-font-variant.git",
  16. "files": [
  17. "index.js"
  18. ],
  19. "dependencies": {
  20. "postcss": "^7.0.2"
  21. },
  22. "devDependencies": {
  23. "jscs": "^3.0.7",
  24. "jshint": "^2.9.6",
  25. "npmpub": "^4.1.0",
  26. "tape": "^4.9.1"
  27. },
  28. "scripts": {
  29. "lint": "npm run jscs && npm run jshint",
  30. "jscs": "jscs index.js test/index.js",
  31. "jshint": "jshint . --exclude-path .gitignore",
  32. "test": "npm run lint && tape test",
  33. "release": "npmpub"
  34. }
  35. }