package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "postcss-modules-scope",
  3. "version": "3.1.1",
  4. "description": "A CSS Modules transform to extract export statements from local-scope classes",
  5. "main": "src/index.js",
  6. "engines": {
  7. "node": "^10 || ^12 || >= 14"
  8. },
  9. "scripts": {
  10. "prettier": "prettier -l --ignore-path .gitignore . \"!test/test-cases\"",
  11. "eslint": "eslint --ignore-path .gitignore .",
  12. "lint": "yarn eslint && yarn prettier",
  13. "test:only": "jest",
  14. "test:watch": "jest --watch",
  15. "test:coverage": "jest --coverage --collectCoverageFrom=\"src/**/*\"",
  16. "pretest": "yarn lint",
  17. "test": "yarn test:coverage",
  18. "prepublishOnly": "yarn test"
  19. },
  20. "repository": {
  21. "type": "git",
  22. "url": "https://github.com/css-modules/postcss-modules-scope.git"
  23. },
  24. "keywords": [
  25. "css-modules",
  26. "postcss",
  27. "plugin"
  28. ],
  29. "files": [
  30. "src"
  31. ],
  32. "author": "Glen Maddern",
  33. "license": "ISC",
  34. "bugs": {
  35. "url": "https://github.com/css-modules/postcss-modules-scope/issues"
  36. },
  37. "homepage": "https://github.com/css-modules/postcss-modules-scope",
  38. "dependencies": {
  39. "postcss-selector-parser": "^6.0.4"
  40. },
  41. "devDependencies": {
  42. "coveralls": "^3.1.0",
  43. "eslint": "^7.9.0",
  44. "eslint-config-prettier": "^6.12.0",
  45. "husky": "^4.3.0",
  46. "jest": "^26.4.2",
  47. "lint-staged": "^10.4.0",
  48. "postcss": "^8.3.0",
  49. "prettier": "^2.1.2"
  50. },
  51. "peerDependencies": {
  52. "postcss": "^8.1.0"
  53. }
  54. }