forked from devowlio/node-gitlab-ci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.47 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "node-gitlab-ci",
"version": "0.5.1",
"description": "Create dynamic GitLab CI pipelines in JavaScript or TypeScript for each project. Reuse and inherit instructions and avoid duplicate code!",
"scripts": {
"build": "tsc",
"dev": "tsc -w",
"lint": "eslint \"src/**/*.ts\""
},
"keywords": [
"gitlab",
"gitlab-ci",
"continuous-integration"
],
"bin": {
"node-gitlab-ci": "lib/index.js"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"homepage": "https://devowl.io/",
"repository": {
"type": "git",
"url": "git+https://gitlab.com/devowlio/node-gitlab-ci.git"
},
"bugs": {
"url": "https://gitlab.com/devowlio/node-gitlab-ci/issues"
},
"author": {
"name": "Matthias Günter",
"email": "[email protected]",
"url": "https://devowl.io/"
},
"contributors": [
{
"name": "devowl.io GmbH",
"email": "[email protected]"
},
{
"name": "Jan Karres",
"email": "[email protected]"
}
],
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"header-max-length": [
2,
"always",
140
]
}
},
"prettier": {
"arrowParens": "always",
"printWidth": 120,
"useTabs": false,
"tabWidth": 4,
"endOfLine": "lf"
},
"dependencies": {
"@gitbeaker/node": "^35.7.0",
"commander": "^9.4.0",
"deepmerge": "^4.2.2",
"glob": "^8.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.2",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@types/glob": "^8.0.0",
"@types/node": "^18.7.15",
"@types/yamljs": "^0.2.31",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3"
}
}