forked from karlbohlmark/node-gitlab-ci
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 1.9 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
75
76
77
78
{
"name": "gitlab-yml",
"version": "0.4.8",
"description": "Create GitLab CI pipelines with TypeScript.",
"scripts": {
"build": "tsc",
"dev": "tsc -w",
"format": "prettier --write \"**/*.{ts,js,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,js,json,md}\"",
"lint": "eslint \"src/**/*.ts\"",
"prepare": "husky && npm run build"
},
"keywords": [
"gitlab",
"gitlab-ci",
"continuous-integration"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://gitlab.com/karlbohlmark/node-gitlab-ci.git"
},
"contributors": [
{
"name": "devowl.io GmbH",
"email": "mail@devowl.io"
}
],
"license": "MIT",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"header-max-length": [
2,
"always",
140
]
}
},
"prettier": {
"arrowParens": "always",
"printWidth": 120,
"useTabs": false,
"tabWidth": 4,
"endOfLine": "lf"
},
"lint-staged": {
"*.{js,ts,json}": [
"prettier --write",
"eslint --fix"
],
"*.md": "prettier --write"
},
"dependencies": {
"deepmerge": "^4.3.1"
},
"devDependencies": {
"@commitlint/cli": "^21.0.1",
"@commitlint/config-conventional": "^21.0.1",
"@types/node": "^24.12.4",
"@eslint/js": "^10.0.1",
"eslint": "^10.4.0",
"typescript-eslint": "^8.59.3",
"husky": "^9.1.7",
"lint-staged": "^17.0.5",
"prettier": "^3.8.3",
"typescript": "^5.9.3"
},
"peerDependencies": {
"typescript": "*"
}
}