forked from mozilla-frontend-infra/react-vnc-display
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.1 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
{
"name": "react-vnc-display",
"version": "2.0.1",
"description": "React component to connect and display a remote VNC connection",
"license": "MPL-2.0",
"repository": "mozilla-frontend-infra/react-vnc-display",
"keywords": [
"react",
"component",
"remote",
"desktop",
"vnc",
"novnc",
"display",
"wss",
"ws",
"websocket"
],
"main": "build/VncDisplay.js",
"browser": "build/VncDisplay.js",
"files": [
"build",
"src"
],
"scripts": {
"start": "neutrino start",
"build": "neutrino build",
"lint": "neutrino lint",
"precommit": "neutrino stage",
"prepare": "neutrino build",
"styleguide": "neutrino styleguide:start",
"styleguide:build": "neutrino styleguide:build",
"deploy": "neutrino styleguide:build && gh-pages --remote upstream -d styleguide"
},
"devDependencies": {
"gh-pages": "^2.1.1",
"neutrino": "^8.1.2",
"neutrino-preset-mozilla-frontend-infra": "^4.1.0",
"react": "^16.2.0",
"react-dom": "^16.2.0"
},
"dependencies": {
"novnc-node": "^0.5.3",
"prop-types": "^15.6.1"
}
}