forked from SuperFlyTV/tv-automation-state-timeline-resolver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
171 lines (171 loc) · 6.52 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
{
"name": "timeline-state-resolver",
"version": "0.0.0-develop",
"description": "Have timeline, control stuff",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"module": "dist/module/index.js",
"browser": "dist/browser/index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nrkno/tv-automation-state-timeline-resolver.git"
},
"bugs": {
"url": "https://github.com/nrkno/tv-automation-state-timeline-resolver/issues"
},
"homepage": "https://github.com/nrkno/tv-automation-state-timeline-resolver#readme",
"contributors": [
{
"name": "Johan Nyman",
"email": "[email protected]",
"url": "http://superfly.tv"
},
{
"name": "Balte 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": {
"info": "npm-scripts-info",
"cleancache": "yarn cache clean atem-connection atem-state casparcg-connection casparcg-state superfly-timeline",
"unlink:all": "yarn unlink atem-connection & yarn unlink atem-state & yarn unlink casparcg-connection & yarn unlink casparcg-state & yarn unlink superfly-timeline",
"installclean": "yarn unlink:all & yarn cleancache && yarn --check-files",
"buildclean": "yarn installclean && yarn build",
"build": "trash dist && yarn build:main",
"build:main": "tsc -p tsconfig.json",
"lint": "tslint --project tsconfig.jest.json --config tslint.json",
"unitci": "jest --maxWorkers 2",
"unit": "jest",
"testci": "yarn test --maxWorkers 2",
"test": "yarn lint && yarn buildall && 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",
"send-coverage": "yarn testci && codecov",
"docs": "yarn docs:html && open docs/index.html",
"docs:test": "yarn docs:html",
"docs:html": "typedoc src/index.ts --excludePrivate --mode file --theme minimal --out docs",
"docs:json": "typedoc --mode file --json docs/typedoc.json src/index.ts",
"docs:publish": "yarn docs:html && gh-pages -d docs",
"changelog": "standard-version",
"release": "yarn reset && yarn testci && yarn docs:publish && yarn changelog",
"reset": "git clean -dfx && git reset --hard && yarn",
"ci": "yarn testci && yarn docs:test",
"validate:dependencies": "yarn audit && yarn license-validate",
"license-validate": "node-license-validator -p -d --allow-licenses MIT BSD BSD-2-Clause BSD-3-Clause ISC Apache Unlicense WTFPL --allow-packages cycle",
"types-build": "cd src/types && trash dist && yarn build:main && cd ../..",
"types-install": "cd src/types && yarn install && cd ../..",
"types-test": "cd src/types && yarn test && cd ../..",
"types-ci": "cd src/types && yarn testci && cd ../..",
"types-validate:dependencies": "cd src/types && yarn validate:dependencies",
"buildall": "yarn build && yarn types-build"
},
"scripts-info": {
"info": "Display information about the scripts",
"installclean": "Remove yarn.lock, cleare yarn cache, and reinstall",
"build": "(Trash and re)build the library",
"build:main": "Builds main build command without trash.",
"lint": "Lint all typescript source files",
"unit": "Build the library and run unit tests",
"test": "Lint, build, and test the library",
"test:integration": "Integration tests. Work in progress",
"watch": "Watch source files, rebuild library on changes, rerun relevant tests",
"cov": "Run tests, generate the HTML coverage report, and open it in a browser",
"cov-open": "Open current test coverage",
"send-coverage": "send coverage to codecov",
"docs": "Generate HTML API documentation and open it in a browser",
"docs:test": "Running the docs generation for testing.",
"docs:html": "Generate HTML documentation",
"docs:json": "Generate API documentation in typedoc JSON format",
"docs:publish": "Generate HTML API documentation and push it to GitHub Pages",
"changelog": "Bump package.json version, update CHANGELOG.md, tag a release",
"release": "Clean, build, test, publish docs, and prepare release (a one-step publish process). Updates versions and creates git commits.",
"reset": "Delete all untracked files and reset the repo to the last commit",
"ci": "Test script for running by the CI (CircleCI)",
"validate:dependencies": "Scan dependencies for vulnerabilities and check licenses",
"license-validate": "Validate licenses for dependencies."
},
"engines": {
"node": ">=4.5"
},
"devDependencies": {
"@types/jest": "^24.0.13",
"@types/node": "^8.0.4",
"@types/underscore": "^1.9.2",
"codecov": "^3.5.0",
"gh-pages": "^2.0.1",
"jest": "^24.8.0",
"jest-haste-map": "^24.8.0",
"jest-resolve": "^24.8.0",
"mkdirp": "^0.5.1",
"node-license-validator": "^1.3.0",
"npm-scripts-info": "^0.3.9",
"nyc": "^14.1.1",
"open-cli": "^5.0.0",
"sleep-ms": "^2.0.1",
"standard-version": "^6.0.1",
"trash-cli": "^3.0.0",
"ts-jest": "^24.0.2",
"tslint": "^5.18.0",
"tslint-config-standard": "^8.0.1",
"typedoc": "^0.15.0",
"typescript": "^3.3.3333"
},
"keywords": [
"broadcast",
"socket",
"typescript",
"javascript",
"open",
"source",
"automation",
"rundown",
"production"
],
"dependencies": {
"@types/request": "^2.48.1",
"@types/sprintf-js": "^1.1.0",
"@types/ws": "^6.0.1",
"atem-connection": "^0.10.0",
"atem-state": "^0.7.1",
"casparcg-connection": "^4.7.0",
"casparcg-state": "^1.8.1",
"emberplus": "git+https://github.com/nrkno/tv-automation-emberplus-connection#dist10102018",
"fast-clone": "^1.5.13",
"hyperdeck-connection": "^0.3.0",
"osc": "^2.2.4",
"request": "^2.88.0",
"sprintf-js": "^1.1.2",
"superfly-timeline": "^7.2.4",
"threadedclass": "^0.6.6",
"underscore": "^1.9.1",
"underscore-deep-extend": "^1.1.5",
"ws": "^7.1.1"
},
"standard-version": {
"message": "chore(release): %s [skip ci]",
"tagPrefix": ""
}
}