This repository was archived by the owner on May 21, 2021. It is now read-only.
forked from jensstigaard/node-vmix
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.26 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.26 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
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "node-vmix",
"version": "1.5.1",
"description": "NodeJS vMix utility to easily send and receive messages to a vMix instance",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"build-test": "yarn build && yarn test",
"clean": "rm -ifr ./dist/*",
"clean-build": "yarn clean && yarn build",
"docs": "yarn typedoc",
"prepublish": "yarn run snyk-protect && yarn clean && yarn build",
"snyk-protect": "snyk protect",
"test": "mocha --recursive"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jensstigaard/node-vmix.git"
},
"keywords": [
"vMix Live Streaming Software",
"vMix instance TCP socket"
],
"author": "Jens Grønhøj Stigaard <jens@stigaard.info>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jensstigaard/node-vmix/issues"
},
"homepage": "https://github.com/jensstigaard/node-vmix#readme",
"engines": {
"node": ">=8"
},
"dependencies": {
"axios": "^0.21.1",
"querystring": "^0.2.1"
},
"devDependencies": {
"@types/node": "^14",
"mocha": "^8.3.2",
"moxios": "^0.4.0",
"snyk": "^1.557.0",
"typedoc": "^0.20.35",
"typescript": "^4",
"vmix-js-utils": "^4.0.3"
},
"snyk": true
}