-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
99 lines (99 loc) · 2.25 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
{
"name": "timeline-state-resolver-types",
"version": "9.2.0",
"description": "Have timeline, control stuff",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nrkno/sofie-timeline-state-resolver.git"
},
"bugs": {
"url": "https://github.com/nrkno/sofie-timeline-state-resolver/issues"
},
"homepage": "https://github.com/nrkno/sofie-timeline-state-resolver#readme",
"contributors": [
{
"name": "Johan Nyman",
"email": "[email protected]",
"url": "http://superfly.tv"
},
{
"name": "Mint de Wit",
"email": "[email protected]",
"url": "http://superfly.tv"
},
{
"name": "Jesper Stærkær",
"email": "[email protected]",
"url": "http://superfly.tv"
},
{
"name": "Jan Starzak",
"email": "[email protected]",
"url": "http://superfly.tv"
},
{
"name": "Stephan Nordnes Eriksen",
"email": "[email protected]"
},
{
"name": "Julian Waller",
"email": "[email protected]",
"url": "http://superfly.tv"
}
],
"scripts": {
"test": "run lint && run unit",
"unit": "run -T jest",
"unitci": "run -T jest --coverage",
"build": "run -T rimraf dist && run build:main",
"build:main": "run -T tsc -p tsconfig.build.json",
"cov": "run -T jest --coverage && run cov-open",
"cov-open": "run -T open-cli coverage/lcov-report/index.html",
"validate:dependencies": "yarn npm audit --environment production && yarn license-validate",
"validate:dev-dependencies": "yarn npm audit --environment development",
"lint:raw": "run -T eslint --ext .ts --ext .js --ext .tsx --ext .jsx --ignore-pattern dist",
"lint": "run lint:raw .",
"lint-fix": "run lint --fix",
"license-validate": "run -T sofie-licensecheck"
},
"engines": {
"node": ">=14.18"
},
"files": [
"/dist",
"/CHANGELOG.md",
"/README.md",
"/LICENSE"
],
"keywords": [
"mos",
"broadcast",
"socket",
"typescript",
"javascript",
"open",
"source",
"automation",
"ncs",
"nrcs",
"rundown",
"production"
],
"dependencies": {
"tslib": "^2.6.2"
},
"publishConfig": {
"access": "public"
},
"lint-staged": {
"*.{css,json,md,scss}": [
"yarn run -T prettier --write"
],
"*.{ts,tsx,js,jsx}": [
"yarn lint:raw --fix"
]
}
}