]> git.proxmox.com Git - mirror_novnc.git/blobdiff - package.json
Set a default value for the quality input
[mirror_novnc.git] / package.json
index ddd2558a01d059007d06b35cc130a50f6dedb279..8ef1ccf5560301c3c9a6fb682e80c3bf2d930b91 100644 (file)
@@ -1,50 +1,82 @@
 {
-  "name": "noVNC",
-  "version": "0.5.1",
+  "name": "@novnc/novnc",
+  "version": "1.1.0",
   "description": "An HTML5 VNC client",
-  "main": "karma.conf.js",
+  "browser": "lib/rfb",
   "directories": {
+    "lib": "lib",
     "doc": "docs",
     "test": "tests"
   },
+  "files": [
+    "lib",
+    "AUTHORS",
+    "VERSION",
+    "docs/API.md",
+    "docs/LIBRARY.md",
+    "docs/LICENSE*",
+    "core",
+    "vendor/pako"
+  ],
   "scripts": {
-    "test": "karma start karma.conf.js"
+    "lint": "eslint app core po/po2js po/xgettext-html tests utils",
+    "test": "karma start karma.conf.js",
+    "prepublish": "node ./utils/use_require.js --as commonjs --clean"
   },
   "repository": {
     "type": "git",
-    "url": "https://github.com/kanaka/noVNC.git"
+    "url": "git+https://github.com/novnc/noVNC.git"
   },
   "author": "Joel Martin <github@martintribe.org> (https://github.com/kanaka)",
   "contributors": [
     "Solly Ross <sross@redhat.com> (https://github.com/directxman12)",
     "Peter Åstrand <astrand@cendio.se> (https://github.com/astrand)",
-    "Samuel Mannehed <samuel@cendio.se> (https://github.com/samhed)"
+    "Samuel Mannehed <samuel@cendio.se> (https://github.com/samhed)",
+    "Pierre Ossman <ossman@cendio.se> (https://github.com/CendioOssman)"
   ],
-  "license": "MPL 2.0",
+  "license": "MPL-2.0",
   "bugs": {
-    "url": "https://github.com/kanaka/noVNC/issues"
+    "url": "https://github.com/novnc/noVNC/issues"
   },
-  "homepage": "https://github.com/kanaka/noVNC",
+  "homepage": "https://github.com/novnc/noVNC",
   "devDependencies": {
-    "ansi": "^0.3.0",
-    "casperjs": "^1.1.0-beta3",
-    "chai": "^1.10.0",
-    "commander": "^2.5.0",
-    "karma": "^0.12.25",
-    "karma-chai": "^0.1.0",
-    "karma-mocha": "^0.1.9",
-    "karma-mocha-reporter": "^0.3.1",
-    "karma-phantomjs-launcher": "^0.1.4",
-    "karma-sauce-launcher": "^0.2.10",
-    "karma-sinon": "^1.0.3",
-    "karma-sinon-chai-latest": "^0.1.0",
-    "mocha": "^2.0.1",
-    "open": "^0.0.5",
-    "phantom": "^0.7.0",
-    "phantomjs": "^1.9.12",
-    "sinon": "^1.12.1",
-    "sinon-chai": "^2.6.0",
-    "spooky": "^0.2.5",
-    "temp": "^0.8.1"
-  }
+    "@babel/core": "*",
+    "@babel/plugin-syntax-dynamic-import": "*",
+    "@babel/plugin-transform-modules-amd": "*",
+    "@babel/plugin-transform-modules-commonjs": "*",
+    "@babel/plugin-transform-modules-systemjs": "*",
+    "@babel/plugin-transform-modules-umd": "*",
+    "@babel/preset-env": "*",
+    "@babel/cli": "*",
+    "babel-plugin-import-redirect": "*",
+    "browserify": "*",
+    "babelify": "*",
+    "core-js": "*",
+    "chai": "*",
+    "commander": "*",
+    "es-module-loader": "*",
+    "eslint": "*",
+    "fs-extra": "*",
+    "jsdom": "*",
+    "karma": "*",
+    "karma-mocha": "*",
+    "karma-mocha-reporter": "*",
+    "karma-sauce-launcher": "*",
+    "karma-sinon-chai": "*",
+    "mocha": "*",
+    "node-getopt": "*",
+    "po2json": "*",
+    "requirejs": "*",
+    "rollup": "*",
+    "rollup-plugin-node-resolve": "*",
+    "sinon": "*",
+    "sinon-chai": "*"
+  },
+  "dependencies": {},
+  "keywords": [
+    "vnc",
+    "rfb",
+    "novnc",
+    "websockify"
+  ]
 }