2014-06-23 19:39:50 -04:00
|
|
|
{
|
2017-10-04 14:58:58 -04:00
|
|
|
"name": "@novnc/novnc",
|
2019-04-09 16:29:53 +02:00
|
|
|
"version": "1.1.0",
|
2014-06-23 19:39:50 -04:00
|
|
|
"description": "An HTML5 VNC client",
|
2018-12-13 10:44:52 +01:00
|
|
|
"browser": "lib/rfb",
|
2014-06-23 19:39:50 -04:00
|
|
|
"directories": {
|
2018-12-13 10:43:34 +01:00
|
|
|
"lib": "lib",
|
2014-06-23 19:39:50 -04:00
|
|
|
"doc": "docs",
|
|
|
|
|
"test": "tests"
|
|
|
|
|
},
|
2018-12-13 10:43:34 +01:00
|
|
|
"files": [
|
|
|
|
|
"lib",
|
|
|
|
|
"AUTHORS",
|
|
|
|
|
"VERSION",
|
|
|
|
|
"docs/API.md",
|
|
|
|
|
"docs/LIBRARY.md",
|
|
|
|
|
"docs/LICENSE*",
|
|
|
|
|
"core",
|
|
|
|
|
"vendor/pako"
|
|
|
|
|
],
|
2014-06-23 19:39:50 -04:00
|
|
|
"scripts": {
|
2018-05-24 00:25:44 +03:00
|
|
|
"lint": "eslint app core po tests utils",
|
|
|
|
|
"test": "karma start karma.conf.js",
|
2019-01-11 12:37:18 +01:00
|
|
|
"prepublish": "node ./utils/use_require.js --as commonjs --clean"
|
2014-06-23 19:39:50 -04:00
|
|
|
},
|
|
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
2017-10-04 14:58:58 -04:00
|
|
|
"url": "git+https://github.com/novnc/noVNC.git"
|
2014-06-23 19:39:50 -04:00
|
|
|
},
|
|
|
|
|
"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)",
|
2017-04-19 15:34:16 +02:00
|
|
|
"Samuel Mannehed <samuel@cendio.se> (https://github.com/samhed)",
|
|
|
|
|
"Pierre Ossman <ossman@cendio.se> (https://github.com/CendioOssman)"
|
2014-06-23 19:39:50 -04:00
|
|
|
],
|
2017-05-08 09:46:38 +02:00
|
|
|
"license": "MPL-2.0",
|
2014-06-23 19:39:50 -04:00
|
|
|
"bugs": {
|
2017-04-19 15:33:42 +02:00
|
|
|
"url": "https://github.com/novnc/noVNC/issues"
|
2014-06-23 19:39:50 -04:00
|
|
|
},
|
2017-04-19 15:33:42 +02:00
|
|
|
"homepage": "https://github.com/novnc/noVNC",
|
2014-06-23 19:39:50 -04:00
|
|
|
"devDependencies": {
|
2017-02-04 17:12:00 -05:00
|
|
|
"babel-core": "^6.22.1",
|
2016-09-14 13:52:53 -04:00
|
|
|
"babel-plugin-add-module-exports": "^0.2.1",
|
2017-07-04 10:10:36 +02:00
|
|
|
"babel-plugin-import-redirect": "*",
|
2017-02-04 17:40:18 -05:00
|
|
|
"babel-plugin-syntax-dynamic-import": "^6.18.0",
|
2017-02-04 17:12:00 -05:00
|
|
|
"babel-plugin-transform-es2015-modules-amd": "^6.22.0",
|
2016-11-10 11:57:25 +01:00
|
|
|
"babel-plugin-transform-es2015-modules-commonjs": "^6.18.0",
|
2017-02-04 17:12:00 -05:00
|
|
|
"babel-plugin-transform-es2015-modules-systemjs": "^6.22.0",
|
|
|
|
|
"babel-plugin-transform-es2015-modules-umd": "^6.22.0",
|
2018-05-24 00:26:34 +03:00
|
|
|
"babel-preset-es2015": "^6.24.1",
|
2017-02-04 17:12:00 -05:00
|
|
|
"babelify": "^7.3.0",
|
2016-09-14 13:52:53 -04:00
|
|
|
"browserify": "^13.1.0",
|
2019-08-15 15:35:30 +02:00
|
|
|
"chai": "*",
|
2016-11-10 11:57:25 +01:00
|
|
|
"commander": "^2.9.0",
|
2017-02-11 16:49:03 -05:00
|
|
|
"es-module-loader": "^2.1.0",
|
2018-05-24 00:25:44 +03:00
|
|
|
"eslint": "^4.16.0",
|
2016-11-10 11:57:25 +01:00
|
|
|
"fs-extra": "^1.0.0",
|
2016-11-14 22:02:12 +01:00
|
|
|
"jsdom": "*",
|
2016-11-10 11:57:25 +01:00
|
|
|
"karma": "^1.3.0",
|
|
|
|
|
"karma-mocha": "^1.3.0",
|
|
|
|
|
"karma-mocha-reporter": "^2.2.0",
|
2017-02-11 16:49:03 -05:00
|
|
|
"karma-sauce-launcher": "^1.0.0",
|
2018-07-13 13:12:04 +02:00
|
|
|
"karma-sinon-chai": "^2.0.0",
|
2016-11-10 11:57:25 +01:00
|
|
|
"mocha": "^3.1.2",
|
2016-11-14 22:02:12 +01:00
|
|
|
"node-getopt": "*",
|
2016-11-14 22:00:21 +01:00
|
|
|
"po2json": "*",
|
2017-02-11 16:49:03 -05:00
|
|
|
"requirejs": "^2.3.2",
|
2019-08-15 15:38:21 +02:00
|
|
|
"rollup": "*",
|
|
|
|
|
"rollup-plugin-node-resolve": "*",
|
2019-08-15 15:35:30 +02:00
|
|
|
"sinon": "*",
|
|
|
|
|
"sinon-chai": "*"
|
2017-10-04 14:58:58 -04:00
|
|
|
},
|
|
|
|
|
"dependencies": {},
|
|
|
|
|
"keywords": [
|
|
|
|
|
"vnc",
|
|
|
|
|
"rfb",
|
|
|
|
|
"novnc",
|
|
|
|
|
"websockify"
|
|
|
|
|
]
|
2014-06-23 19:39:50 -04:00
|
|
|
}
|