-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.07 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.07 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
{
"name": "@codingame/commitlint-config-codingame",
"version": "0.0.0-semantic-release",
"private": false,
"description": "Default configuration for commit lint at CodinGame",
"main": "dist/index.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/commitlint-config-codingame.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"files": [
"dist"
],
"volta": {
"node": "25.2.0",
"npm": "11.6.2"
},
"dependencies": {
"@codingame/semantic-release-rules": "^1.1.6",
"@commitlint/config-conventional": "^19.1.0"
},
"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"
}
}