-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 991 Bytes
/
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
{
"name": "root",
"version": "1.0.0",
"private": true,
"description": "A monorepo for shared configuration files.",
"repository": {
"type": "git",
"repository": "https://github.com/Austrian-Web-Services/config.git"
},
"license": "MIT",
"author": "Lorenz Nimmervoll <[email protected]>",
"type": "commonjs",
"main": "index.js",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "yarn workspaces foreach run build",
"lint": "eslint --cache .",
"lint:fix": "eslint --cache --fix .",
"release": "yarn workspaces foreach run semantic-release"
},
"release": {
"branches": [
"main"
],
"extends": "semantic-release-monorepo"
},
"devDependencies": {
"@typescript-eslint/parser": "^6.13.2",
"eslint": "^8.55.0",
"projen": "^0.68.5",
"semantic-release": "19.0.5",
"semantic-release-monorepo": "^7.0.5",
"typescript": "^5.3.3",
"yarn": "^1.22.19"
},
"packageManager": "[email protected]"
}