forked from karlbohlmark/node-gitlab-ci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.7 KB
/
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
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
{
"name": "gitlab-yml",
"version": "0.4.5",
"description": "Create GitLab CI pipelines with TypeScript.",
"scripts": {
"postinstall": "npm run build",
"build": "tsc",
"dev": "tsc -w",
"lint": "eslint \"src/**/*.ts\"",
"prepare": "husky install"
},
"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": "[email protected]"
}
],
"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"
},
"dependencies": {
"deepmerge": "^4.3.1"
},
"devDependencies": {
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@types/node": "^20.17.4",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"prettier": "^2.8.8",
"pretty-quick": "^3.1.3",
"typescript": "^5.6.3"
}
}