-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.16 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.16 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
{
"name": "abinnovision-actions",
"version": "0.0.0",
"private": true,
"repository": "git@github.com:abinnovision/actions.git",
"license": "Apache-2.0",
"author": {
"name": "abi group GmbH",
"email": "info@abigroup.io",
"url": "https://abigroup.io/"
},
"workspaces": [
"actions/*",
"workflows/*"
],
"scripts": {
"build": "turbo build",
"check": "yarn format:check && turbo check",
"fix": "yarn format:fix && turbo fix",
"format:check": "prettier --ignore-path .gitignore --check '{*,.github/**/*}.{json,json5,yaml,yml,md}'",
"format:fix": "prettier --ignore-path .gitignore --write '{*,.github/**/*}.{json,json5,yaml,yml,md}'",
"postinstall": "husky install",
"readme:generate": "tsx scripts/generate-readme.ts && yarn turbo format:fix",
"sort:check": "sort-package-json '{actions,workflows}/**!(node_modules)/package.json' 'package.json' --check",
"sort:fix": "sort-package-json '{actions,workflows}/**!(node_modules)/package.json' 'package.json'"
},
"commitlint": {
"extends": [
"@abinnovision/commitlint-config"
]
},
"lint-staged": {
"{*,.github/**/*}.{json,json5,yaml,yml,md}": [
"prettier --write"
],
"**/package.json": [
"sort-package-json"
]
},
"prettier": "@abinnovision/prettier-config",
"resolutions": {
"conventional-changelog-angular@npm:^8.1.0": "patch:conventional-changelog-angular@npm%3A8.1.0#~/.yarn/patches/conventional-changelog-angular-npm-8.1.0-5d11bed92a.patch",
"conventional-changelog-conventionalcommits@npm:9.1.0": "patch:conventional-changelog-conventionalcommits@npm%3A9.1.0#~/.yarn/patches/conventional-changelog-conventionalcommits-npm-9.1.0-d8dfa4c13e.patch"
},
"devDependencies": {
"@abinnovision/commitlint-config": "^2.3.0",
"@abinnovision/prettier-config": "^2.2.0",
"@commitlint/cli": "^21.0.2",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.9.3",
"handlebars": "^4.7.9",
"husky": "^9.1.7",
"js-yaml": "^4.1.1",
"lint-staged": "^17.0.7",
"prettier": "^3.8.3",
"sort-package-json": "^3.6.1",
"tablemark": "^4.1.0",
"tsx": "^4.21.0",
"turbo": "^2.9.18",
"typescript": "^6.0.3"
},
"packageManager": "yarn@4.16.0",
"engines": {
"node": ">=16"
},
"engineStrict": true
}