You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

59 lines
1.5 KiB

4 years ago
  1. {
  2. "author": "Sascha Depold <sascha@depold.com> (http://depold.com)",
  3. "name": "jquery-rss",
  4. "description": "An easy-to-use rss plugin for jquery with templating.",
  5. "version": "4.3.0",
  6. "homepage": "https://github.com/sdepold/jquery-rss",
  7. "keywords": [
  8. "rss",
  9. "jquery",
  10. "ender"
  11. ],
  12. "ender": "noop",
  13. "repository": {
  14. "type": "git",
  15. "url": "git://github.com/sdepold/jquery-rss.git"
  16. },
  17. "contributors": [
  18. {
  19. "name": "Sascha Depold",
  20. "email": "sascha@depold.com"
  21. },
  22. {
  23. "name": "Steffen Schröder",
  24. "email": "steffen@schroeder-blog.de"
  25. }
  26. ],
  27. "main": "src/jquery.rss.js",
  28. "scripts": {
  29. "test": "npm run bundle && mocha test/jquery.rss.test.js -t 10000",
  30. "bundle": "node utils/bundle",
  31. "lint": "eslint src/**/*.js spec/**/*.js",
  32. "prepack": "npm run version:sync && npm run bundle",
  33. "version:sync": "node utils/sync-version",
  34. "serve": "static &",
  35. "watch": "npm run serve && watch 'npm run bundle' ./src"
  36. },
  37. "engines": {
  38. "node": ">=v0.4.8"
  39. },
  40. "dependencies": {
  41. "vanilla-rss": "^1.4.0"
  42. },
  43. "devDependencies": {
  44. "chai": "^4.2.0",
  45. "eslint": "^6.4.0",
  46. "jquery": "^3.4.0",
  47. "jsdom": "^15.1.1",
  48. "mocha": "^6.2.0",
  49. "moment": "^2.14.1",
  50. "node-fetch": "^2.6.0",
  51. "node-static": "^0.7.11",
  52. "rollup": "^1.23.1",
  53. "rollup-plugin-node-resolve": "^5.2.0",
  54. "rollup-plugin-terser": "^5.1.2",
  55. "sinon": "^7.5.0",
  56. "watch": "^1.0.2"
  57. },
  58. "license": "MIT"
  59. }