package.json 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. {
  2. "name": "@novnc/novnc",
  3. "version": "1.3.0",
  4. "description": "An HTML5 VNC client",
  5. "browser": "lib/rfb",
  6. "directories": {
  7. "lib": "lib",
  8. "doc": "docs",
  9. "test": "tests"
  10. },
  11. "files": [
  12. "lib",
  13. "AUTHORS",
  14. "VERSION",
  15. "docs/API.md",
  16. "docs/LIBRARY.md",
  17. "docs/LICENSE*",
  18. "core",
  19. "vendor/pako"
  20. ],
  21. "scripts": {
  22. "lint": "eslint app core po/po2js po/xgettext-html tests utils",
  23. "test": "karma start karma.conf.js",
  24. "prepublish": "node ./utils/use_require.js --clean"
  25. },
  26. "repository": {
  27. "type": "git",
  28. "url": "git+https://github.com/novnc/noVNC.git"
  29. },
  30. "author": "Joel Martin <github@martintribe.org> (https://github.com/kanaka)",
  31. "contributors": [
  32. "Samuel Mannehed <samuel@cendio.se> (https://github.com/samhed)",
  33. "Pierre Ossman <ossman@cendio.se> (https://github.com/CendioOssman)"
  34. ],
  35. "license": "MPL-2.0",
  36. "bugs": {
  37. "url": "https://github.com/novnc/noVNC/issues"
  38. },
  39. "homepage": "https://github.com/novnc/noVNC",
  40. "devDependencies": {
  41. "@babel/core": "*",
  42. "@babel/plugin-syntax-dynamic-import": "*",
  43. "@babel/plugin-transform-modules-commonjs": "*",
  44. "@babel/preset-env": "*",
  45. "@babel/cli": "*",
  46. "babel-plugin-import-redirect": "*",
  47. "browserify": "*",
  48. "babelify": "*",
  49. "core-js": "*",
  50. "chai": "*",
  51. "commander": "*",
  52. "es-module-loader": "*",
  53. "eslint": "*",
  54. "fs-extra": "*",
  55. "jsdom": "*",
  56. "karma": "*",
  57. "karma-mocha": "*",
  58. "karma-chrome-launcher": "*",
  59. "@chiragrupani/karma-chromium-edge-launcher": "*",
  60. "karma-firefox-launcher": "*",
  61. "karma-ie-launcher": "*",
  62. "karma-mocha-reporter": "*",
  63. "karma-safari-launcher": "*",
  64. "karma-script-launcher": "*",
  65. "karma-sinon-chai": "*",
  66. "mocha": "*",
  67. "node-getopt": "*",
  68. "po2json": "*",
  69. "requirejs": "*",
  70. "rollup": "*",
  71. "rollup-plugin-node-resolve": "*",
  72. "sinon": "*",
  73. "sinon-chai": "*"
  74. },
  75. "dependencies": {},
  76. "keywords": [
  77. "vnc",
  78. "rfb",
  79. "novnc",
  80. "websockify"
  81. ]
  82. }