package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "@radiomanifest/radiomanifest",
  3. "version": "0.1.0",
  4. "description": "An implementation of the ever-famous [radiomanifest spec](https://radiomanifest.degenerazione.xyz//)",
  5. "main": "radiomanifest.js",
  6. "module": "radiomanifest.js",
  7. "directories": {
  8. "doc": "doc",
  9. "test": "test"
  10. },
  11. "repository": {
  12. "type": "git",
  13. "url": "gogs@git.lattuga.net:lesion/radiomanifest.js.git"
  14. },
  15. "scripts": {
  16. "test": "npm run test:node && npm run test:browser",
  17. "test:node": "mocha",
  18. "test:browser": "karma start --single-run --browsers ChromeHeadless,FirefoxHeadless karma.config.js",
  19. "docs": "TZ=UTC jsdoc -c ./jsdoc.conf.json --tutorials doc/tutorials/ --package ./package.json . doc/home.md",
  20. "build": "webpack"
  21. },
  22. "author": "boyska",
  23. "license": "AGPL-3.0-or-later",
  24. "devDependencies": {
  25. "chai": "^4.3.4",
  26. "chai-as-promised": "^7.1.1",
  27. "docdash": "^1.2.0",
  28. "eslint": "^8.49.0",
  29. "eslint-config-prettier": "^9.0.0",
  30. "jsdoc": "^4.0.2",
  31. "karma": "^6.3.9",
  32. "karma-chrome-launcher": "^3.1.0",
  33. "karma-firefox-launcher": "^2.1.2",
  34. "karma-mocha": "^2.0.1",
  35. "karma-webpack": "^5.0.0",
  36. "mocha": "^9.1.3",
  37. "prettier": "3.0.3",
  38. "webpack": "^5.64.1",
  39. "webpack-cli": "^4.9.1"
  40. },
  41. "dependencies": {
  42. "ical.js": "^1.5.0",
  43. "isomorphic-unfetch": "^3.1.0"
  44. },
  45. "keywords": [
  46. "radio",
  47. "podcast"
  48. ]
  49. }