-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.83 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.83 KB
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
{
"name": "@sofie-automation/code-standard-preset",
"version": "3.2.2",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Sofie-Automation/sofie-code-standard-preset.git"
},
"bugs": {
"url": "https://github.com/Sofie-Automation/sofie-code-standard-preset/issues"
},
"homepage": "https://github.com/Sofie-Automation/sofie-code-standard-preset#readme",
"contributors": [
{
"name": "Julian Waller",
"email": "julian@superfly.tv"
},
{
"name": "Mint de Wit",
"email": "mint@superfly.tv"
},
{
"name": "Richard Cartwright",
"email": "spark@superfly.tv"
}
],
"engines": {
"node": ">= 20"
},
"bin": {
"sofie-licensecheck": "./bin/checkLicenses.mjs",
"sofie-version": "./bin/updateVersion.mjs"
},
"scripts": {
"changelog": "./bin/updateVersion.mjs",
"release": "run reset && run changelog",
"reset": "git clean -dfx && git reset --hard && yarn",
"validate:dependencies": "yarn npm audit --environment production && run license-validate",
"validate:dev-dependencies": "yarn npm audit --environment development",
"license-validate": "./bin/checkLicenses.mjs"
},
"files": [
"/CHANGELOG.md",
"/README.md",
"/ts",
"/bin",
"/eslint",
"/.prettierrc.json"
],
"dependencies": {
"@sofie-automation/eslint-plugin": "0.2.1",
"@vitest/eslint-plugin": "^1.6.6",
"date-fns": "^4.1.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jest": "^28.14.0",
"eslint-plugin-n": "^17.23.2",
"eslint-plugin-prettier": "^5.5.5",
"license-checker": "^25.0.1",
"meow": "^13.2.0",
"read-package-up": "^11.0.0",
"semver": "^7.7.3",
"typescript-eslint": "^8.54.0"
},
"devDependencies": {
"@types/eslint": "^9.6.1",
"prettier": "^3.8.1"
},
"peerDependencies": {
"eslint": "^9",
"prettier": "^3",
"typescript": "~5.7"
},
"packageManager": "yarn@4.12.0"
}