package.json 604 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "projet-dblp",
  3. "version": "0.0.1",
  4. "description": "Projet cours XML M2 Informatique Artois",
  5. "homepage": "https://github.com/Loquicom/",
  6. "author": {
  7. "name": "Arthur Brandao & Maxence Bacquet",
  8. "email": ""
  9. },
  10. "keywords": [
  11. "node",
  12. "nodejs",
  13. "xml",
  14. "dbpl",
  15. "sax"
  16. ],
  17. "main": "main.js",
  18. "private": true,
  19. "scripts": {
  20. "start": "node main.js",
  21. "prepare": "node main.js prepare ./data/dblp.xml"
  22. },
  23. "engines": {
  24. "node": ">=10.12.0"
  25. },
  26. "dependencies": {
  27. "commander": "^3.0.2",
  28. "inquirer": "^7.0.0",
  29. "sax": "^1.2.4"
  30. }
  31. }