forked from nrkno/sofie-atem-state
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.75 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
{
"name": "atem-state",
"version": "1.2.0",
"description": "Typescript Node.js library for comparing ATEM states",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nrkno/sofie-atem-state"
},
"bugs": {
"url": "https://github.com/nrkno/sofie-atem-state/issues"
},
"homepage": "https://github.com/nrkno/sofie-atem-state#readme",
"author": {
"name": "Balte de Wit",
"email": "[email protected]",
"url": "http://superfly.tv"
},
"contributors": [
{
"name": "Julian Waller",
"email": "[email protected]"
},
{
"name": "Johan Nyman",
"email": "[email protected]"
}
],
"scripts": {
"prepare": "husky install",
"build": "rimraf dist && yarn build:main",
"build:main": "tsc -p tsconfig.build.json",
"lint:raw": "eslint --ext .ts --ext .js --ext .tsx --ext .jsx --ignore-pattern dist",
"lint": "yarn lint:raw .",
"lint-fix": "yarn lint --fix",
"unit": "jest --forceExit",
"test": "yarn lint && yarn unit",
"watch": "jest --watch",
"cov": "jest --coverage; open-cli coverage/lcov-report/index.html",
"cov-open": "open-cli coverage/lcov-report/index.html",
"docs": "yarn docs:html && open-cli docs/index.html",
"docs:test": "yarn docs:html",
"docs:html": "typedoc --tsconfig tsconfig.docs.json --entryPoints src/index.ts --excludePrivate --theme default --out docs",
"docs:json": "typedoc --tsconfig tsconfig.docs.json --json docs/typedoc.json --entryPoints src/index.ts",
"release": "sofie-version",
"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": "yarn sofie-licensecheck --allowPackages [email protected]"
},
"engines": {
"node": "^14.18 || ^16.14 || >=18.0"
},
"files": [
"/dist",
"/CHANGELOG.md",
"/README.md",
"/LICENSE"
],
"devDependencies": {
"@sofie-automation/code-standard-preset": "~2.5.2",
"@types/jest": "^29.5.10",
"@types/node": "^14.18.63",
"@types/object-path": "^0.11.4",
"atem-connection": "3.5",
"fast-clone": "^1.5.13",
"jest": "^29.7.0",
"object-path": "^0.11.8",
"open-cli": "^7.2.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"typedoc": "^0.24.8",
"typescript": "~4.9.5"
},
"keywords": [
"typescript",
"javascript",
"open",
"source"
],
"peerDependencies": {
"atem-connection": "3.4"
},
"dependencies": {
"deepmerge": "^4.3.1",
"tslib": "^2.6.2",
"type-fest": "^3.13.1"
},
"prettier": "@sofie-automation/code-standard-preset/.prettierrc.json",
"lint-staged": {
"*.{css,json,md,scss}": [
"prettier --write"
],
"*.{ts,tsx,js,jsx}": [
"yarn lint:raw --fix"
]
}
}