-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
137 lines (137 loc) · 5.01 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
{
"name": "tv-automation-quantel-gateway",
"version": "1.7.0",
"private": true,
"description": "CORBA to REST gateway for Quantel/ISA playback",
"main": "dist/index.js",
"scripts": {
"info": "npm-scripts-info",
"installclean": "yarn unlink:all & yarn cleancache && yarn --check-files",
"buildclean": "yarn installclean && yarn build",
"build": "rimraf dist && node-gyp build && yarn build:main",
"buildtest": "yarn build && yarn unit",
"build:main": "tsc -p tsconfig.json",
"lint": "tslint --project tsconfig.jest.json --config tslint.json",
"unit": "jest --runInBand",
"testci": "yarn test",
"test": "yarn lint && yarn build && yarn unit",
"watch": "jest --runInBand --watch",
"cov": "jest --runInBand --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-cli docs/index.html",
"docs:test": "yarn docs:html",
"docs:html": "typedoc src/index.ts --excludePrivate --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 changelog",
"prepareChangelog": "standard-version --prerelease",
"reset": "git clean -dfx && git reset --hard && yarn",
"validate:dependencies": "yarn audit --groups dependencies && yarn license-validate",
"license-validate": "node-license-validator -p -d --allow-licenses MIT BSD BSD-2-Clause BSD-3-Clause 0BSD ISC Apache Unlicense WTFPL GPL GPL-2.0-or-later --allow-packages cycle",
"watch-server": "nodemon --watch src -e ts,tsx --exec ts-node ./src/server.ts",
"server": "ts-node ./src/server.ts",
"start": "node ./dist/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nrkno/sofie-quantel-gateway.git"
},
"keywords": [
"broadcast",
"Quantel",
"binding",
"CORBA",
"automation",
"production",
"open",
"source"
],
"contributors": [
{
"name": "Johan Nyman",
"email": "[email protected]",
"url": "https://superfly.tv"
},
{
"name": "Richard Cartwright",
"email": "[email protected]",
"url": "https://streampunk.media"
}
],
"license": "GPL-2.0-or-later",
"bugs": {
"url": "https://github.com/nrkno/sofie-quantel-gateway/issues"
},
"homepage": "https://github.com/nrkno/sofie-quantel-gateway#readme",
"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",
"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",
"changelog": "Bump package.json version, update CHANGELOG.md, tag a release",
"release": "Clean, build, test, 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",
"validate:dependencies": "Scan dependencies for vulnerabilities and check licenses",
"license-validate": "Validate licenses for dependencies.",
"watch-server": "Run HTTP server and restart when changes are made."
},
"engines": {
"node": ">=18.12.00"
},
"devDependencies": {
"@types/jest": "^29.2.5",
"@types/koa": "^2.11.5",
"@types/koa-bodyparser": "^4.2.2",
"@types/koa-router": "^7.0.40",
"@types/node": "^12.12.0",
"@types/request": "^2.48.1",
"@types/request-promise-native": "^1.0.16",
"@types/yargs": "^13.0.2",
"codecov": "^3.8.0",
"jest": "^29.3.1",
"jest-haste-map": "^29.3.1",
"jest-resolve": "^29.3.1",
"mkdirp": "^1.0.4",
"node-license-validator": "^1.3.0",
"nodemon": "^2.0.20",
"npm-scripts-info": "^0.3.9",
"open-cli": "^7.1.0",
"rimraf": "^3.0.2",
"standard-version": "^9.5.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"tslint-config-standard": "^9.0.0",
"typedoc": "^0.23.24",
"typescript": "^4.3.0"
},
"dependencies": {
"bindings": "^1.5.0",
"koa": "^2.13.1",
"koa-bodyparser": "^4.2.1",
"koa-router": "^8.0.0",
"p-queue": "^6.6.2",
"request": "^2.88.0",
"request-promise-native": "^1.0.9",
"segfault-handler": "^1.3.0",
"tslib": "^2.3.1",
"yargs": "^17.6.2"
},
"standard-version": {
"message": "chore(release): %s",
"tagPrefix": ""
},
"resolutions": {
"node-license-validator/**/minimist": "^1.2.3",
"trim-newlines": "^3.0.1"
}
}