-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.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": "src/index.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": "matthias.guenter@devowl.io",
"url": "https://devowl.io/"
},
"contributors": [
{
"name": "devowl.io GmbH",
"email": "mail@devowl.io"
},
{
"name": "Jan Karres",
"email": "jan.karres@devowl.io"
}
],
"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": "^28.4.1",
"commander": "^7.2.0",
"deepmerge": "^4.2.2",
"glob": "^7.1.7",
"ts-node": "^10.0.0",
"typescript": "^4.3.2",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/glob": "^7.1.3",
"@types/node": "^15.12.0",
"@types/yamljs": "^0.2.31",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^4.2.1",
"prettier": "^2.3.0",
"pretty-quick": "^3.1.0"
}
}