-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
108 lines (108 loc) · 2.86 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
{
"name": "casparcg-state",
"version": "3.0.3",
"engines": {
"node": ">= 14.18"
},
"description": "Node.js Javascript/Typescript library for keeping and resolving a given state of CasparCG into commands for casparcg-connection.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"link": "npm link casparcg-connection",
"unlink": "npm unlink casparcg-connection",
"build": "rimraf dist && yarn build:main",
"build:main": "tsc -p tsconfig.build.json",
"unit": "jest",
"test": "yarn lint && yarn unit",
"test:integration": "yarn 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": "yarn typedoc ./src/index.ts",
"changelog": "sofie-version",
"release": "yarn reset && yarn changelog",
"release.old": "yarn reset && yarn docs:publish && yarn changelog",
"reset": "git clean -dfx && git reset --hard && yarn",
"validate:dependencies": "yarn audit --groups dependencies && yarn license-validate",
"validate:dev-dependencies": "yarn audit --groups devDependencies",
"prepare": "husky install",
"lint:raw": "eslint --ext .ts --ext .js --ext .tsx --ext .jsx --ignore-pattern dist",
"lint": "yarn lint:raw .",
"lint-fix": "yarn lint --fix",
"license-validate": "yarn sofie-licensecheck --allowPackages \"caniuse-lite@1.0.30001374;caniuse-lite@1.0.30001377\""
},
"repository": {
"type": "git",
"url": "https://github.com/SuperFlyTV/casparcg-state"
},
"bugs": {
"url": "https://github.com/SuperFlyTV/casparcg-state/issues"
},
"license": "MIT",
"directories": {
"lib": "src/"
},
"files": [
"/dist",
"/CHANGELOG.md",
"/README.md",
"/LICENSE"
],
"contributors": [
{
"name": "Johan Nyman",
"email": "johan@superfly.tv",
"url": "http://superfly.tv"
},
{
"name": "Jesper Stærkær",
"email": "jesper@superfly.tv",
"url": "http://superfly.tv"
},
{
"name": "Stephan Nordnes Eriksen",
"email": "Stephanruler@gmail.com"
}
],
"homepage": "http://superfly.tv",
"keywords": [
"casparcg",
"caspar",
"caspercg",
"amcp",
"broadcast",
"graphics",
"superfly",
"connection",
"middleware",
"osc",
"state",
"resolve"
],
"dependencies": {
"casparcg-connection": "6.2.0",
"fast-clone": "^1.5.13",
"underscore": "^1.13.6"
},
"devDependencies": {
"@sofie-automation/code-standard-preset": "~2.3.0",
"@types/jest": "^29.4.0",
"@types/node": "^14.18.23",
"@types/underscore": "^1.11.4",
"jest": "^29.4.3",
"open-cli": "^7.1.0",
"rimraf": "^4.1.2",
"ts-jest": "^29.0.5",
"typedoc": "^0.23.25",
"typescript": "~4.9"
},
"prettier": "@sofie-automation/code-standard-preset/.prettierrc.json",
"lint-staged": {
"*.{css,json,md,scss}": [
"prettier --write"
],
"*.{ts,tsx,js,jsx}": [
"yarn lint:raw --fix"
]
}
}