package.json 891 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "class-transformer",
  3. "version": "0.5.1",
  4. "description": "Proper decorator-based transformation / serialization / deserialization of plain javascript objects to class constructors",
  5. "author": "TypeStack contributors",
  6. "license": "MIT",
  7. "readmeFilename": "README.md",
  8. "sideEffects": false,
  9. "main": "./cjs/index.js",
  10. "module": "./esm5/index.js",
  11. "es2015": "./esm2015/index.js",
  12. "typings": "./types/index.d.ts",
  13. "repository": {
  14. "type": "git",
  15. "url": "https://github.com/typestack/class-transformer.git"
  16. },
  17. "tags": [
  18. "serialization",
  19. "deserialization",
  20. "serializer",
  21. "typescript",
  22. "object-to-class",
  23. "typescript-serializer"
  24. ],
  25. "husky": {
  26. "hooks": {
  27. "pre-commit": "lint-staged"
  28. }
  29. },
  30. "lint-staged": {
  31. "*.md": [
  32. "npm run prettier:fix"
  33. ],
  34. "*.ts": [
  35. "npm run prettier:fix"
  36. ]
  37. }
  38. }