package.json 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. {
  2. "name": "postcss-html",
  3. "version": "1.5.0",
  4. "publishConfig": {
  5. "access": "public"
  6. },
  7. "description": "PostCSS syntax for parsing HTML (and HTML-like)",
  8. "engines": {
  9. "node": "^12 || >=14"
  10. },
  11. "main": "./lib/index.js",
  12. "files": [
  13. "lib"
  14. ],
  15. "repository": {
  16. "type": "git",
  17. "url": "git+https://github.com/ota-meshi/postcss-html.git"
  18. },
  19. "keywords": [
  20. "postcss",
  21. "syntax",
  22. "html",
  23. "vue",
  24. "quickapp",
  25. "PHP",
  26. "css",
  27. "less",
  28. "sass",
  29. "scss",
  30. "sss",
  31. "sugarss"
  32. ],
  33. "author": "gucong",
  34. "contributors": [
  35. "Yosuke Ota (https://github.com/ota-meshi)"
  36. ],
  37. "license": "MIT",
  38. "bugs": {
  39. "url": "https://github.com/ota-meshi/postcss-html/issues"
  40. },
  41. "homepage": "https://github.com/ota-meshi/postcss-html#readme",
  42. "nyc": {
  43. "reporter": [
  44. "lcov",
  45. "text"
  46. ],
  47. "cache": true,
  48. "check-coverage": true
  49. },
  50. "scripts": {
  51. "mocha": "mocha \"test/**/*.js\" --no-timeouts",
  52. "test": "nyc npm run mocha",
  53. "lint": "eslint .",
  54. "eslint-fix": "eslint . --fix",
  55. "preversion": "npm run test",
  56. "update-snap": "mocha \"test/**/*.js\" --no-timeouts --update"
  57. },
  58. "dependencies": {
  59. "htmlparser2": "^8.0.0",
  60. "js-tokens": "^8.0.0",
  61. "postcss": "^8.4.0",
  62. "postcss-safe-parser": "^6.0.0"
  63. },
  64. "devDependencies": {
  65. "@ota-meshi/eslint-plugin": "^0.11.0",
  66. "autoprefixer": "^10.3.7",
  67. "chai": "^4.3.4",
  68. "codecov": "^3.8.3",
  69. "eslint": "^8.0.1",
  70. "eslint-config-prettier": "^8.3.0",
  71. "eslint-plugin-eslint-comments": "^3.2.0",
  72. "eslint-plugin-json-schema-validator": "^3.0.0",
  73. "eslint-plugin-jsonc": "^2.0.0",
  74. "eslint-plugin-node": "^11.1.0",
  75. "eslint-plugin-node-dependencies": "^0.9.0",
  76. "eslint-plugin-prettier": "^4.0.0",
  77. "eslint-plugin-regexp": "^1.4.1",
  78. "eslint-plugin-vue": "^9.0.0",
  79. "eslint-plugin-yml": "^1.0.0",
  80. "mocha": "^10.0.0",
  81. "mocha-chai-jest-snapshot": "^1.1.3",
  82. "nyc": "^15.1.0",
  83. "postcss-less": "^6.0.0",
  84. "postcss-scss": "^4.0.1",
  85. "postcss-styl": "^0.11.0",
  86. "prettier": "^2.4.1",
  87. "stylelint": "^14.4.0",
  88. "stylelint-config-standard": "^26.0.0",
  89. "sugarss": "^4.0.1"
  90. }
  91. }