This repository has been archived by the owner on Aug 12, 2021. It is now read-only.
forked from nrkno/sofie-core-integration
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
131 lines (131 loc) · 4.71 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
{
"name": "tv-automation-server-core-integration",
"version": "1.5.1",
"description": "Library for connecting to Core",
"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-server-core-integration"
},
"bugs": {
"url": "https://github.com/nrkno/tv-automation-server-core-integration/issues"
},
"homepage": "https://github.com/nrkno/tv-automation-server-core-integration",
"author": {
"name": "Johan Nyman",
"email": "[email protected]",
"url": "http://superfly.tv"
},
"contributors": [
{
"name": "Stephan Nordnes Eriksen",
"email": "[email protected]"
}
],
"scripts": {
"info": "npm-scripts-info",
"build": "trash dist && yarn build:main",
"build:main": "tsc -p tsconfig.build.json",
"lint": "tslint --project tsconfig.json --config tslint.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",
"send-coverage": "codecov",
"docs": "yarn docs:html && open-cli 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 test && 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",
"license-validate": "node-license-validator -p -d --allow-licenses MIT BSD BSD-2-Clause BSD-3-Clause 0BSD ISC Apache Apache-2.0 Unlicense"
},
"scripts-info": {
"info": "Display information about the scripts",
"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",
"validate:dependencies": "Scan dependencies for vulnerabilities and check licenses",
"license-validate": "Validate licenses for dependencies."
},
"engines": {
"node": ">=10.10"
},
"files": [
"/dist",
"/CHANGELOG.md",
"/README.md",
"/LICENSE"
],
"devDependencies": {
"@types/jest": "^25.2.3",
"@types/node": "^12.11.7",
"@types/underscore": "^1.9.2",
"codecov": "^3.5.0",
"gh-pages": "^3.0.0",
"jest": "^26.0.1",
"node-license-validator": "^1.3.0",
"npm-scripts-info": "^0.3.9",
"open-cli": "^6.0.1",
"standard-version": "^8.0.0",
"trash-cli": "^3.0.0",
"ts-jest": "^26.1.0",
"tslint": "^6.1.2",
"tslint-config-standard": "^9.0.0",
"typedoc": "^0.16.0",
"typescript": "~3.6.5"
},
"keywords": [
"broadcast",
"socket",
"typescript",
"javascript",
"open",
"source",
"automation",
"ncs",
"nrcs",
"rundown",
"production"
],
"dependencies": {
"data-store": "3.1.0",
"ddp": "git+http://github.com/nytamin/node-ddp-client.git#v0.12.2-next2",
"ddp-random": "~0.8.1-1",
"tslib": "^1.13.0",
"underscore": "^1.10.2"
},
"standard-version": {
"message": "chore(release): %s [skip ci]",
"tagPrefix": ""
},
"resolutions": {
"yargs-parser": "^18.1.2",
"minimist": "^1.2.3"
}
}