This repository has been archived by the owner on Jan 19, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
114 lines (114 loc) · 3.55 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
{
"name": "playout-gateway",
"version": "1.32.0",
"private": true,
"description": "Connect to Core, play stuff",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nrkno/tv-automation-playout-gateway"
},
"bugs": {
"url": "https://github.com/nrkno/tv-automation-playout-gateway/issues"
},
"homepage": "https://github.com/nrkno/tv-automation-playout-gateway",
"author": {
"name": "Johan Nyman",
"email": "[email protected]",
"url": "http://superfly.tv"
},
"contributors": [],
"scripts": {
"info": "npm-scripts-info",
"build": "rimraf dist && yarn build:main",
"buildstart": "yarn build && yarn start",
"buildinspect": "yarn build && yarn inspect",
"build:main": "tsc -p tsconfig.build.json",
"lint": "eslint . --ext .ts --ext .js --ignore-pattern dist",
"lint-fix": "yarn lint --fix",
"unit": "jest",
"test": "yarn lint && yarn unit",
"test:integration": "yarn lint && jest --config=jest-integration.config.js",
"watch": "jest --watch",
"cov": "jest; open-cli coverage/lcov-report/index.html",
"cov-open": "open-cli coverage/lcov-report/index.html",
"send-coverage": "jest && codecov",
"changelog": "standard-version",
"release": "yarn reset && yarn test && yarn changelog",
"reset": "git clean -dfx && git reset --hard && yarn",
"ci": "yarn test",
"inspect": "node --inspect dist/index.js",
"start": "node dist/index.js",
"unlinkall": "yarn unlink @sofie-automation/server-core-integration timeline-state-resolver && yarn --check-files",
"validate:dependencies": "yarn audit --groups dependencies && yarn license-validate",
"validate:dev-dependencies": "yarn audit --groups devDependencies",
"license-validate": "yarn sofie-licensecheck --allowPackages [email protected]",
"prepareChangelog": "standard-version --prerelease"
},
"scripts-info": {
"info": "Display information about the scripts",
"build": "(Trash and re)build the library",
"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",
"changelog": "Bump package.json version, update CHANGELOG.md, tag a release",
"reset": "Delete all untracked files and reset the repo to the last commit",
"release": "Clean, build, test, and prepare release (a one-step publish process)"
},
"engines": {
"node": ">=12"
},
"prettier": "@sofie-automation/code-standard-preset/.prettierrc.json",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,json,md,scss}": [
"prettier --write"
],
"*.{ts,tsx}": [
"yarn lint-fix"
]
},
"devDependencies": {
"@sofie-automation/code-standard-preset": "^0.2.1",
"@types/jest": "^26.0.19",
"@types/node": "^12.19.9",
"@types/underscore": "^1.10.24",
"@types/winston": "^2.3.9",
"codecov": "^3.8.1",
"jest": "^26.6.3",
"npm-scripts-info": "^0.3.9",
"open-cli": "^6.0.1",
"rimraf": "^3.0.2",
"standard-version": "^9.0.0",
"ts-jest": "^26.4.4",
"typescript": "~4.0.5"
},
"keywords": [
"broadcast",
"socket",
"typescript",
"javascript",
"open",
"source",
"automation",
"ncs",
"nrcs",
"rundown",
"production"
],
"dependencies": {
"@sofie-automation/blueprints-integration": "1.32.0",
"@sofie-automation/server-core-integration": "1.32.0",
"fast-clone": "^1.5.13",
"timeline-state-resolver": "5.7.0",
"tslib": "^2.1.0",
"underscore": "^1.12.1",
"winston": "^2.4.2"
}
}