Files
noVNC/package.json
T

82 lines
2.3 KiB
JSON
Raw Normal View History

{
2017-10-04 14:58:58 -04:00
"name": "@novnc/novnc",
2018-02-22 14:10:10 +01:00
"version": "1.0.0",
"description": "An HTML5 VNC client",
2018-12-13 10:44:52 +01:00
"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": {
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"
},
"repository": {
"type": "git",
2017-10-04 14:58:58 -04:00
"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)",
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)"
],
2017-05-08 09:46:38 +02:00
"license": "MPL-2.0",
"bugs": {
2017-04-19 15:33:42 +02:00
"url": "https://github.com/novnc/noVNC/issues"
},
2017-04-19 15:33:42 +02:00
"homepage": "https://github.com/novnc/noVNC",
"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",
"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",
"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",
2016-11-10 11:57:25 +01:00
"chai": "^3.5.0",
"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",
"rollup": "^0.41.4",
"rollup-plugin-node-resolve": "^2.0.0",
2018-07-13 13:12:04 +02:00
"sinon": "^4.0.0",
2017-02-05 12:34:47 -05:00
"sinon-chai": "^2.8.0"
2017-10-04 14:58:58 -04:00
},
"dependencies": {},
"keywords": [
"vnc",
"rfb",
"novnc",
"websockify"
]
}