-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
executable file
·127 lines (127 loc) · 3.22 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "casparcg-connection",
"version": "6.3.0",
"description": "Node.js Javascript/Typescript library for CasparCG connection and commands.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/SuperFlyTV/casparcg-connection.git"
},
"bugs": {
"url": "https://github.com/SuperFlyTV/casparcg-connection/issues"
},
"homepage": "http://superfly.tv",
"author": {
"name": "Jesper Stærkær",
"email": "jesper@superfly.tv",
"url": "http://superfly.tv"
},
"contributors": [
{
"name": "Johan Nyman",
"email": "johan@superfly.tv",
"url": "http://superfly.tv"
},
{
"name": "Balte de Wit",
"email": "balte.dewit@gmail.com",
"url": "http://balte.nl"
},
{
"name": "Andreas Jeansson",
"email": "andreas.jeansson@svt.se",
"url": "http://svt.se"
},
{
"name": "Aleksandr Besedin",
"email": "sasha.besedin@gmail.com",
"url": "http://cosmonova.net"
},
{
"name": "Craig Sweaton",
"email": "craig@csweaton.com",
"url": "https://csweaton.com"
},
{
"name": "Stephan Nordnes Eriksen",
"email": "Stephanruler@gmail.com"
}
],
"scripts": {
"info": "npm-scripts-info",
"build": "rimraf dist && run build:main",
"build:main": "tsc -p tsconfig.build.json",
"unit": "jest --forceExit",
"test": "run lint && run unit",
"test:integration": "run lint && jest --config=jest-integration.config.js",
"watch": "jest --watch",
"cov": "jest --coverage; open-cli coverage/lcov-report/index.html",
"cov-open": "open-cli coverage/lcov-report/index.html",
"docs": "typedoc ./src/index.ts",
"changelog": "sofie-version",
"release": "run reset && run test && run changelog",
"release:skiptest": "run reset && run changelog",
"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",
"prepare": "husky install",
"lint:raw": "run eslint --ext .ts --ext .js --ext .tsx --ext .jsx --ignore-pattern dist",
"lint": "run lint:raw .",
"lint-fix": "run lint --fix",
"license-validate": "sofie-licensecheck",
"eslint": "./node_modules/.bin/eslint",
"prettier": "./node_modules/.bin/prettier",
"lint-staged": "./node_modules/.bin/lint-staged"
},
"engines": {
"node": ">=14.18"
},
"files": [
"/dist",
"/CHANGELOG.md",
"/README.md",
"/LICENSE"
],
"devDependencies": {
"@sofie-automation/code-standard-preset": "~2.5.2",
"@types/jest": "^29.4.0",
"@types/node": "^16.11.45",
"@types/xml2js": "^0.4.11",
"jest": "^29.4.3",
"open-cli": "^7.1.0",
"rimraf": "^4.3.1",
"ts-jest": "^29.0.5",
"typedoc": "^0.23.25",
"typescript": "~4.9"
},
"keywords": [
"casparcg",
"caspar",
"amcp",
"socket",
"tcp",
"broadcast",
"graphics",
"superfly",
"connection",
"middleware",
"remote"
],
"dependencies": {
"eventemitter3": "^5.0.1",
"tslib": "^2.6.3",
"xml2js": "^0.6.2"
},
"prettier": "@sofie-automation/code-standard-preset/.prettierrc.json",
"lint-staged": {
"*.{css,json,md,scss}": [
"run prettier --write"
],
"*.{ts,tsx,js,jsx}": [
"run lint:raw --fix"
]
},
"packageManager": "yarn@3.8.3"
}