package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "rss-parser",
  3. "version": "3.13.0",
  4. "main": "index.js",
  5. "types": "index.d.ts",
  6. "scripts": {
  7. "test": "mocha --reporter-option maxDiffSize=0 --exit",
  8. "build": "./scripts/build.sh"
  9. },
  10. "author": "Bobby Brennan",
  11. "license": "MIT",
  12. "devDependencies": {
  13. "@babel/core": "^7.21.4",
  14. "@babel/preset-env": "^7.21.4",
  15. "@types/xml2js": "^0.4.3",
  16. "babel-core": "^6.26.3",
  17. "babel-loader": "^8.0.4",
  18. "babel-preset-env": "^1.7.0",
  19. "chai": "^3.4.1",
  20. "express": "^4.16.3",
  21. "mocha": "^10.2.0",
  22. "puppeteer": "^5.2.1",
  23. "webpack": "^4.46.0",
  24. "webpack-cli": "^3.3.9"
  25. },
  26. "dependencies": {
  27. "entities": "^2.0.3",
  28. "xml2js": "^0.5.0"
  29. },
  30. "directories": {
  31. "test": "test"
  32. },
  33. "repository": {
  34. "type": "git",
  35. "url": "git+https://github.com/bobby-brennan/rss-parser.git"
  36. },
  37. "bugs": {
  38. "url": "https://github.com/bobby-brennan/rss-parser/issues"
  39. },
  40. "homepage": "https://github.com/bobby-brennan/rss-parser#readme",
  41. "description": "A lightweight RSS parser, for Node and the browser",
  42. "keywords": [
  43. "RSS",
  44. "RSS to JSON",
  45. "RSS reader",
  46. "RSS parser",
  47. "RSS to JS",
  48. "Feed reader"
  49. ]
  50. }