package.json 724 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "schild",
  3. "version": "0.9.0",
  4. "repository": "hmt/schild.js",
  5. "description": "schild.js bietet eine API zu MySQL/MariaDB Schild-Datenbanken",
  6. "homepage": "https://github.com/hmt/schild.js",
  7. "main": "dist/schild.cjs",
  8. "module": "dist/schild.esm.js",
  9. "scripts": {
  10. "test": "jest",
  11. "build": "rollup -c",
  12. "dev": "rollup -c -w",
  13. "pretest": "npm run build"
  14. },
  15. "files": [
  16. "dist"
  17. ],
  18. "keywords": [
  19. "schild",
  20. "nrw",
  21. "schule",
  22. "datenbank",
  23. "api"
  24. ],
  25. "author": "hmt",
  26. "license": "ISC",
  27. "dependencies": {
  28. "mysql": "^2.18.1",
  29. "objection": "^3.0.0"
  30. },
  31. "devDependencies": {
  32. "jest": "^29.3.1",
  33. "knex": "^2.4.0",
  34. "rollup": "^3.10.0"
  35. }
  36. }