package.json 919 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "postcss-pxtorem",
  3. "description": "A CSS post-processor that converts px to rem.",
  4. "version": "6.1.0",
  5. "author": "cuth",
  6. "license": "MIT",
  7. "repository": {
  8. "type": "git",
  9. "url": "git@github.com:cuth/postcss-pxtorem.git"
  10. },
  11. "bugs": "https://github.com/cuth/postcss-pxtorem/issues",
  12. "main": "index.js",
  13. "scripts": {
  14. "lint": "eslint .",
  15. "test": "jasmine-node spec"
  16. },
  17. "husky": {
  18. "hooks": {
  19. "pre-commit": "lint-staged"
  20. }
  21. },
  22. "lint-staged": {
  23. "*.js": [
  24. "eslint --fix",
  25. "prettier --write"
  26. ]
  27. },
  28. "devDependencies": {
  29. "eslint": "^6.8.0",
  30. "husky": "^4.2.3",
  31. "jasmine-node": "^1.16.0",
  32. "lint-staged": "^10.0.8",
  33. "postcss": "^8.0.0",
  34. "prettier": "^1.19.1"
  35. },
  36. "keywords": [
  37. "css",
  38. "rem",
  39. "pixel",
  40. "px",
  41. "postcss",
  42. "postcss-plugin"
  43. ],
  44. "peerDependencies": {
  45. "postcss": "^8.0.0"
  46. }
  47. }