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.

49 lines
1.3 KiB

  1. {
  2. "name": "postcss-replace-overflow-wrap",
  3. "version": "3.0.0",
  4. "description": "PostCSS plugin to replace overflow-wrap with word-wrap or optionally retain both declarations.",
  5. "keywords": [
  6. "postcss",
  7. "css",
  8. "postcss-plugin",
  9. "overflow-wrap",
  10. "word-wrap"
  11. ],
  12. "author": "Matthias Müller <MattDiMu@users.noreply.github.com>",
  13. "license": "MIT",
  14. "repository": "MattDiMu/postcss-replace-overflow-wrap",
  15. "bugs": {
  16. "url": "https://github.com/MattDiMu/postcss-replace-overflow-wrap/issues"
  17. },
  18. "homepage": "https://github.com/MattDiMu/postcss-replace-overflow-wrap",
  19. "files": [
  20. "index.js"
  21. ],
  22. "dependencies": {
  23. "postcss": "^7.0.2"
  24. },
  25. "devDependencies": {
  26. "ava": "^0.25.0",
  27. "eslint": "^5.3.0",
  28. "eslint-config-logux": "^24.0.0",
  29. "eslint-config-postcss": "^3.0.3",
  30. "eslint-config-standard": "^11.0.0",
  31. "eslint-plugin-es5": "^1.3.1",
  32. "eslint-plugin-import": "^2.13.0",
  33. "eslint-plugin-jest": "^21.20.1",
  34. "eslint-plugin-node": "^7.0.1",
  35. "eslint-plugin-promise": "^3.8.0",
  36. "eslint-plugin-security": "^1.4.0",
  37. "eslint-plugin-standard": "^3.1.0"
  38. },
  39. "scripts": {
  40. "test": "ava && eslint *.js"
  41. },
  42. "eslintConfig": {
  43. "extends": "eslint-config-postcss/es5",
  44. "rules": {
  45. "max-len": 0,
  46. "es5/no-modules": false
  47. }
  48. }
  49. }