package.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "arxiv-api",
  3. "version": "1.1.1",
  4. "description": "node wrapper for arXiv api",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "jest -u ./src/index.test.js",
  8. "test:coverage": "jest ./src/index.test.js --coverage",
  9. "lint": "eslint '**/*.js' --quiet"
  10. },
  11. "repository": {
  12. "type": "git",
  13. "url": "git+https://github.com/eliorav/arXiv-api.git"
  14. },
  15. "keywords": [
  16. "arxiv",
  17. "node",
  18. "javascript"
  19. ],
  20. "author": "elior avraham",
  21. "license": "ISC",
  22. "bugs": {
  23. "url": "https://github.com/eliorav/arXiv-api/issues"
  24. },
  25. "homepage": "https://github.com/eliorav/arXiv-api#readme",
  26. "dependencies": {
  27. "axios": "0.19.2",
  28. "lodash": "4.17.15",
  29. "xml2js": "0.4.23"
  30. },
  31. "devDependencies": {
  32. "eslint": "6.8.0",
  33. "eslint-config-prettier": "6.10.1",
  34. "eslint-plugin-jest": "23.8.2",
  35. "eslint-plugin-node": "11.0.0",
  36. "eslint-plugin-prettier": "^2.6.0",
  37. "jest": "25.2.2",
  38. "prettier": "1.16.4"
  39. },
  40. "engines": {
  41. "node": ">=8.10.0"
  42. }
  43. }