package.json 650 B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "class-validator",
  3. "version": "0.14.0",
  4. "description": "Decorator-based property validation for classes.",
  5. "author": "TypeStack contributors",
  6. "license": "MIT",
  7. "sideEffects": false,
  8. "main": "./cjs/index.js",
  9. "module": "./esm5/index.js",
  10. "es2015": "./esm2015/index.js",
  11. "typings": "./types/index.d.ts",
  12. "repository": {
  13. "type": "git",
  14. "url": "https://github.com/typestack/class-validator.git"
  15. },
  16. "tags": [
  17. "validator",
  18. "validation",
  19. "decorators",
  20. "typescript"
  21. ],
  22. "dependencies": {
  23. "@types/validator": "^13.7.10",
  24. "libphonenumber-js": "^1.10.14",
  25. "validator": "^13.7.0"
  26. }
  27. }