forked from novnc/noVNC
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
100 lines (100 loc) · 2.91 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@novnc/novnc",
"version": "1.1.0",
"description": "An HTML5 VNC client",
"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": {
"lint": "eslint app core po/po2js po/xgettext-html tests utils",
"test": "karma start karma.conf.js",
"prepublish": "node node_modules/pbjs/cli.js ../libs/hbb_common/protos/message.proto --es6 message.js",
"dev": "node node_modules/webpack-cli/bin/cli.js -d --progress --watch --profile --json > compilation-stats.json --env.dev",
"start": "node node_modules/webpack-dev-server/bin/webpack-dev-server.js -d --progress --color --inline --env.dev",
"build": "rm -rf build; node_modules/webpack-cli/bin/cli.js -p --progress --env.prod"
},
"repository": {
"type": "git",
"url": "git+https://github.com/novnc/noVNC.git"
},
"author": "Joel Martin <[email protected]> (https://github.com/kanaka)",
"contributors": [
"Solly Ross <[email protected]> (https://github.com/directxman12)",
"Peter Åstrand <[email protected]> (https://github.com/astrand)",
"Samuel Mannehed <[email protected]> (https://github.com/samhed)",
"Pierre Ossman <[email protected]> (https://github.com/CendioOssman)"
],
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/novnc/noVNC/issues"
},
"homepage": "https://github.com/novnc/noVNC",
"devDependencies": {
"@babel/cli": "*",
"@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-loader": "^8.1.0",
"babel-plugin-import-redirect": "*",
"babelify": "*",
"browserify": "*",
"chai": "*",
"commander": "*",
"copy-webpack-plugin": "^4.3.1",
"core-js": "*",
"css-hot-loader": "^1.3.5",
"css-loader": "^1.0.0",
"es-module-loader": "*",
"eslint": "*",
"file-loader": "^2.0.0",
"fs-extra": "*",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.1.0",
"jsdom": "*",
"karma": "*",
"karma-mocha": "*",
"karma-mocha-reporter": "*",
"karma-sauce-launcher": "*",
"karma-sinon-chai": "*",
"mini-css-extract-plugin": "^0.4.1",
"mocha": "*",
"node-getopt": "*",
"pbjs": "^0.0.14",
"po2json": "*",
"requirejs": "*",
"rollup": "*",
"rollup-plugin-node-resolve": "*",
"sinon": "*",
"sinon-chai": "*",
"webpack": "^4.2.0",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.1"
},
"dependencies": {
"yuv-canvas": "^1.2.6",
"zstd-codec": "^0.1.2"
},
"keywords": [
"vnc",
"rfb",
"novnc",
"websockify"
]
}