pid-parser-service/package.json

23 lines
791 B
JSON

{
"name": "PIDMR-parser-service",
"version": "1.0.0",
"description": "PIDMR resolver parser service. Gets a PID, makes a request to PIDMR service, and given the response parses it to a json object if there is a parser available for the given endpoint.",
"main": "pidResolverService.js",
"scripts": {
"start": "node pidResolverService.js",
"prepare-dist": "rm -rf dist; mkdir dist; cp package.json ./dist; cp -r pidResolverService.js parsers model ./dist; cp properties.file ./dist;"
},
"author": "Argiro Kokogiannaki <argirok@athenarc.gr>",
"license": "AGPL",
"dependencies": {
"axios": "^1.6.7",
"body-parser": "^1.20.2",
"express": "^4.18.2",
"properties-reader": "^2.2.0",
"xml2js": "^0.6.2"
},
"engines": {
"node": ">=16.14.0"
}
}