package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "icss-utils",
  3. "version": "5.1.0",
  4. "description": "ICSS utils for postcss ast",
  5. "main": "src/index.js",
  6. "engines": {
  7. "node": "^10 || ^12 || >= 14"
  8. },
  9. "files": [
  10. "src"
  11. ],
  12. "scripts": {
  13. "prettier": "prettier -l --ignore-path .gitignore . \"!test/test-cases\"",
  14. "eslint": "eslint --ignore-path .gitignore .",
  15. "lint": "yarn eslint && yarn prettier",
  16. "test:only": "jest",
  17. "test:watch": "jest --watch",
  18. "test:coverage": "jest --coverage --collectCoverageFrom=\"src/**/*\"",
  19. "pretest": "yarn lint",
  20. "test": "yarn test:coverage",
  21. "prepublishOnly": "yarn test"
  22. },
  23. "repository": {
  24. "type": "git",
  25. "url": "git+https://github.com/css-modules/icss-utils.git"
  26. },
  27. "keywords": [
  28. "css",
  29. "modules",
  30. "icss",
  31. "postcss"
  32. ],
  33. "author": "Glen Maddern",
  34. "license": "ISC",
  35. "bugs": {
  36. "url": "https://github.com/css-modules/icss-utils/issues"
  37. },
  38. "homepage": "https://github.com/css-modules/icss-utils#readme",
  39. "devDependencies": {
  40. "coveralls": "^3.1.0",
  41. "eslint": "^7.9.0",
  42. "eslint-config-prettier": "^6.12.0",
  43. "husky": "^4.3.0",
  44. "jest": "^26.4.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. }