-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.3 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.3 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
{
"name": "@codingame/semantic-release-config-github",
"version": "0.0.0-semantic-release",
"private": false,
"description": "Default Github configuration for semantic release at CodinGame",
"main": "dist/release.config.js",
"type": "module",
"scripts": {
"lint": "eslint 'src/**/*.ts' && prettier --check '**/*.{js,ts}'",
"compile": "tsc",
"build": "npm run lint && npm run compile"
},
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/CodinGame/semantic-release-config-github.git"
},
"dependencies": {
"@codingame/semantic-release-rules": "^1.2.1",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/github": "^12.0.2",
"@semantic-release/npm": "^13.1.3",
"@semantic-release/release-notes-generator": "^14.1.0",
"conventional-changelog-conventionalcommits": "^9.1.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"files": [
"dist"
],
"volta": {
"node": "25.2.0",
"npm": "11.6.2"
},
"devDependencies": {
"@codingame/commitlint-config-codingame": "^1.1.1",
"@codingame/tsconfig": "^1.1.1",
"eslint": "^9.39.2",
"prettier": "^3.8.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.0"
}
}