package.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "name": "stylelint-config-recommended-vue",
  3. "version": "1.4.0",
  4. "description": "The recommended shareable Vue config for Stylelint.",
  5. "keywords": [
  6. "stylelint",
  7. "stylelint-config",
  8. "recommended",
  9. "vue"
  10. ],
  11. "main": "lib/index.js",
  12. "files": [
  13. "lib",
  14. "scss"
  15. ],
  16. "engines": {
  17. "node": "^12 || >=14"
  18. },
  19. "scripts": {
  20. "test": "mocha \"tests/lib/**/*.js\" --reporter dot --timeout 60000",
  21. "lint": "eslint .",
  22. "eslint-fix": "eslint . --fix",
  23. "version": "npm run test && git add ."
  24. },
  25. "dependencies": {
  26. "semver": "^7.3.5",
  27. "stylelint-config-html": ">=1.0.0",
  28. "stylelint-config-recommended": ">=6.0.0"
  29. },
  30. "peerDependencies": {
  31. "stylelint": ">=14.0.0",
  32. "postcss-html": "^1.0.0"
  33. },
  34. "devDependencies": {
  35. "@ota-meshi/eslint-plugin": "^0.10.0",
  36. "eslint": "^8.0.0",
  37. "eslint-config-prettier": "^8.3.0",
  38. "eslint-plugin-eslint-comments": "^3.2.0",
  39. "eslint-plugin-json-schema-validator": "^2.0.0",
  40. "eslint-plugin-jsonc": "^2.0.0",
  41. "eslint-plugin-node": "^11.1.0",
  42. "eslint-plugin-prettier": "^4.0.0",
  43. "eslint-plugin-regexp": "^1.5.0",
  44. "eslint-plugin-vue": "^8.0.0",
  45. "eslint-plugin-yml": "^0.14.0",
  46. "mocha": "^9.1.3",
  47. "prettier": "^2.4.1",
  48. "stylelint": "^14.5.0"
  49. },
  50. "repository": {
  51. "type": "git",
  52. "url": "git+https://github.com/ota-meshi/stylelint-config-recommended-vue.git"
  53. },
  54. "author": "Yosuke Ota (https://github.com/ota-meshi)",
  55. "funding": "https://github.com/sponsors/ota-meshi",
  56. "license": "MIT",
  57. "bugs": {
  58. "url": "https://github.com/ota-meshi/stylelint-config-recommended-vue/issues"
  59. },
  60. "homepage": "https://github.com/ota-meshi/stylelint-config-recommended-vue#readme"
  61. }