-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
113 lines (113 loc) · 3.44 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
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "atem-connection",
"version": "3.5.0",
"description": "Typescript Node.js library for connecting with an ATEM switcher.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nrkno/sofie-atem-connection.git"
},
"bugs": {
"url": "https://github.com/nrkno/sofie-atem-connection/issues"
},
"homepage": "https://github.com/nrkno/sofie-atem-connection#readme",
"contributors": [
{
"name": "Mint de Wit",
"email": "[email protected]"
},
{
"name": "Julian Waller",
"email": "[email protected]"
}
],
"scripts": {
"postinstall": "./node_modules/.bin/husky install",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"build": "rimraf dist && run build:main",
"build:main": "tsc -p tsconfig.build.json",
"lint:raw": "run eslint --ext .ts --ext .js --ext .tsx --ext .jsx ",
"lint": "run lint:raw .",
"lint-fix": "run lint --fix",
"unit": "run jest --forceExit",
"test": "run lint && run unit",
"watch": "run jest --watch",
"cov": "run jest --coverage; open-cli coverage/lcov-report/index.html",
"cov-open": "open-cli coverage/lcov-report/index.html",
"docs": "run docs:html && open-cli docs/index.html",
"docs:test": "run docs:html",
"docs:html": "typedoc --tsconfig tsconfig.docs.json --entryPoints src/index.ts --excludePrivate --theme default --out docs",
"docs:json": "typedoc --tsconfig tsconfig.docs.json --json docs/typedoc.json --entryPoints src/index.ts",
"release": "sofie-version",
"reset": "git clean -dfx && git reset --hard && yarn",
"validate:dependencies": "yarn npm audit --environment production && run license-validate",
"validate:dev-dependencies": "yarn npm audit --environment development",
"license-validate": "sofie-licensecheck --allowPackages [email protected]",
"eslint": "./node_modules/.bin/eslint",
"prettier": "./node_modules/.bin/prettier",
"lint-staged": "./node_modules/.bin/lint-staged"
},
"engines": {
"node": "^14.18 || ^16.14 || >=18.0"
},
"files": [
"/dist",
"/assets",
"/CHANGELOG.md",
"/README.md",
"/LICENSE"
],
"devDependencies": {
"@sinonjs/fake-timers": "^10.3.0",
"@sofie-automation/code-standard-preset": "~2.5.2",
"@types/debug": "^4.1.12",
"@types/jest": "^29.5.10",
"@types/node": "^14.18.63",
"@types/object-path": "^0.11.4",
"@types/sinon": "^10.0.20",
"@types/sinonjs__fake-timers": "^8.1.5",
"jest": "^29.7.0",
"jest-extended": "^3.2.4",
"object-path": "^0.11.8",
"open-cli": "^7.2.0",
"pinst": "^3.0.0",
"rimraf": "^5.0.5",
"sinon": "^14.0.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typedoc": "^0.24.8",
"typescript": "~4.9.5"
},
"keywords": [
"atem",
"blackmagic",
"bmd",
"switcher",
"video"
],
"dependencies": {
"@julusian/freetype2": "^1.1.2",
"debug": "^4.3.4",
"eventemitter3": "^4.0.7",
"exit-hook": "^2.2.1",
"nanotimer": "^0.3.15",
"p-lazy": "^3.1.0",
"p-queue": "^6.6.2",
"threadedclass": "^1.2.1",
"tslib": "^2.6.2",
"wavefile": "^8.4.6"
},
"prettier": "@sofie-automation/code-standard-preset/.prettierrc.json",
"lint-staged": {
"*.{css,json,md,scss}": [
"prettier --write"
],
"*.{ts,tsx,js,jsx}": [
"yarn lint-fix"
]
},
"packageManager": "[email protected]"
}