package.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "name": "@sequelize/validator.js",
  3. "version": "7.0.0-alpha.46",
  4. "description": "Integration between validator.js and Sequelize",
  5. "funding": [
  6. {
  7. "type": "opencollective",
  8. "url": "https://opencollective.com/sequelize"
  9. }
  10. ],
  11. "repository": {
  12. "type": "git",
  13. "url": "git@github.com:sequelize/sequelize.git"
  14. },
  15. "bugs": {
  16. "url": "https://github.com/sequelize/sequelize/issues"
  17. },
  18. "scripts": {
  19. "test-typings": "tsc --noEmit",
  20. "test-unit": "yarn mocha \"test/**/*.test.[tj]s\"",
  21. "mocha": "mocha -r ../../test/register-esbuild.js",
  22. "build": "../../build-packages.mjs validator-js"
  23. },
  24. "main": "./lib/index.js",
  25. "types": "./lib/index.d.ts",
  26. "exports": {
  27. ".": {
  28. "import": {
  29. "types": "./lib/index.d.mts",
  30. "default": "./lib/index.mjs"
  31. },
  32. "require": {
  33. "types": "./lib/index.d.ts",
  34. "default": "./lib/index.js"
  35. }
  36. },
  37. "./package.json": "./package.json"
  38. },
  39. "files": [
  40. "lib"
  41. ],
  42. "license": "MIT",
  43. "type": "commonjs",
  44. "publishConfig": {
  45. "access": "public"
  46. },
  47. "dependencies": {
  48. "@sequelize/core": "workspace:*",
  49. "lodash": "^4.17.21"
  50. },
  51. "devDependencies": {
  52. "@sequelize/sqlite3": "workspace:*",
  53. "@types/chai": "4.3.20",
  54. "@types/chai-as-promised": "7.1.8",
  55. "chai": "4.5.0",
  56. "chai-as-promised": "7.1.2",
  57. "mocha": "11.7.1"
  58. }
  59. }