package.json 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "name": "stylelint-scss",
  3. "description": "A collection of SCSS-specific rules for Stylelint",
  4. "version": "4.7.0",
  5. "author": "Krister Kari",
  6. "repository": "stylelint-scss/stylelint-scss",
  7. "license": "MIT",
  8. "main": "dist/index.js",
  9. "peerDependencies": {
  10. "stylelint": "^14.5.1 || ^15.0.0"
  11. },
  12. "dependencies": {
  13. "postcss-media-query-parser": "^0.2.3",
  14. "postcss-resolve-nested-selector": "^0.1.1",
  15. "postcss-selector-parser": "^6.0.11",
  16. "postcss-value-parser": "^4.2.0"
  17. },
  18. "devDependencies": {
  19. "@babel/cli": "^7.21.0",
  20. "@babel/core": "^7.21.4",
  21. "@babel/preset-env": "^7.21.4",
  22. "babel-plugin-istanbul": "^6.1.1",
  23. "babel-preset-jest": "^29.5.0",
  24. "eslint": "^8.39.0",
  25. "github-contributors-list": "^1.2.5",
  26. "husky": "^8.0.3",
  27. "jest": "^29.5.0",
  28. "jest-cli": "^29.5.0",
  29. "jest-preset-stylelint": "^6.1.0",
  30. "lint-staged": "^13.2.1",
  31. "np": "^7.7.0",
  32. "postcss": "^8.4.23",
  33. "postcss-less": "^6.0.0",
  34. "postcss-scss": "^4.0.6",
  35. "prettier": "^2.8.8",
  36. "rimraf": "^5.0.0",
  37. "stylelint": "^15.6.0"
  38. },
  39. "files": [
  40. "dist/**/*.js",
  41. "!**/__tests__/**"
  42. ],
  43. "keywords": [
  44. "css",
  45. "csslint",
  46. "lint",
  47. "linter",
  48. "scss",
  49. "stylelint",
  50. "stylelint-plugin"
  51. ],
  52. "scripts": {
  53. "prebuild": "rimraf dist",
  54. "build": "babel src --out-dir dist",
  55. "lint": "eslint . --ignore-path .gitignore",
  56. "prettify": "prettier --write \"src/**/*.js\"",
  57. "prepublishOnly": "npm run build",
  58. "pretest": "npm run lint",
  59. "release": "np",
  60. "jest": "jest",
  61. "test": "npm run jest -- --coverage",
  62. "watch": "npm run jest -- --watch",
  63. "test-rule": "npm run jest",
  64. "test-util": "npm run jest",
  65. "generate-contributors-list": "githubcontrib --owner stylelint-scss --repo stylelint-scss --cols 6 --sortOrder desc --filter greenkeeper[bot],dependabot[bot] --showlogin true --imagesize 80 --format html",
  66. "prepare": "husky install"
  67. }
  68. }