package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "postcss-modules-local-by-default",
  3. "version": "4.0.4",
  4. "description": "A CSS Modules transform to make local scope the default",
  5. "main": "src/index.js",
  6. "author": "Mark Dalgleish",
  7. "license": "MIT",
  8. "files": [
  9. "src"
  10. ],
  11. "repository": {
  12. "type": "git",
  13. "url": "https://github.com/css-modules/postcss-modules-local-by-default.git"
  14. },
  15. "engines": {
  16. "node": "^10 || ^12 || >= 14"
  17. },
  18. "keywords": [
  19. "css-modules",
  20. "postcss",
  21. "css",
  22. "postcss-plugin"
  23. ],
  24. "scripts": {
  25. "prettier": "prettier -l --ignore-path .gitignore .",
  26. "eslint": "eslint --ignore-path .gitignore .",
  27. "lint": "yarn eslint && yarn prettier",
  28. "test:only": "jest",
  29. "test:watch": "jest --watch",
  30. "test:coverage": "jest --coverage --collectCoverageFrom=\"src/**/*\"",
  31. "test": "yarn test:coverage",
  32. "prepublishOnly": "yarn lint && yarn test"
  33. },
  34. "dependencies": {
  35. "icss-utils": "^5.0.0",
  36. "postcss-selector-parser": "^6.0.2",
  37. "postcss-value-parser": "^4.1.0"
  38. },
  39. "devDependencies": {
  40. "coveralls": "^3.1.0",
  41. "eslint": "^7.10.0",
  42. "eslint-config-prettier": "^6.12.0",
  43. "husky": "^4.3.0",
  44. "jest": "^26.5.2",
  45. "lint-staged": "^10.4.0",
  46. "postcss": "^8.1.0",
  47. "prettier": "^2.1.2"
  48. },
  49. "peerDependencies": {
  50. "postcss": "^8.1.0"
  51. }
  52. }