-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.78 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.78 KB
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
{
"name": "cgf.cameracontrol.main",
"version": "1.0.0",
"description": "Typescript application that uses a Gamepad to control a Video mixer and multiple cameras.",
"keywords": [
"Viva Kirche",
"Chrischona",
"Frauenfeld",
"Camera",
"PTZ"
],
"homepage": "https://github.com/sensslen/Cgf.CameraControl.Main#readme",
"bugs": {
"url": "https://github.com/sensslen/Cgf.CameraControl.Main/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sensslen/Cgf.CameraControl.Main.git"
},
"license": "MIT",
"author": "Simon Ensslen",
"main": "Cli/dist/index.js",
"scripts": {
"build": "pushd Core && npm run build && popd && pushd Signalr.PtzLanc.Camera && npm run build && popd && pushd Websocket.PtzLanc.Camera && npm run build && popd && pushd Cli && npm run build && popd",
"clean": "pushd Core && npm run clean && popd && pushd Signalr.PtzLanc.Camera && npm run clean && popd && pushd Websocket.PtzLanc.Camera && npm run clean && popd && pushd Cli && npm run clean && popd",
"install": "pushd Core && npm i && popd && pushd Signalr.PtzLanc.Camera && npm i && popd && pushd Websocket.PtzLanc.Camera && npm i && popd && pushd Cli && npm i && popd",
"postinstall": "sort-package-json",
"lint": "pushd Core && npm run lint && popd && pushd Signalr.PtzLanc.Camera && npm run lint && popd && pushd Websocket.PtzLanc.Camera && npm run lint && popd && pushd Cli && npm run lint && popd",
"lint-fix": "pushd Core && npm run lint-fix && popd && pushd Signalr.PtzLanc.Camera && npm run lint-fix && popd && pushd Websocket.PtzLanc.Camera && npm run lint-fix && popd && pushd Cli && npm run lint-fix && popd",
"prestart": "npm run build",
"start": "node Cli/dist/index.js"
},
"dependencies": {
"sort-package-json": "^3"
}
}