-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.78 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
{
"name": "glpushrule",
"version": "0.0.0",
"description": "CLI for managing Gitlab push rules across groups and repositories. Apply sweeping changes with one command.",
"keywords": ["gitlab", "cli", "push-rules", "gitlab-push-rules", "gitlab-tools", "repository-management"],
"repository": "https://github.com/erNail/glpushrule",
"author": "Eric Nagel <[email protected]>",
"license": "MIT",
"main": "./dist/src/index.js",
"bin": {
"glpushrule": "./dist/src/index.js"
},
"scripts": {
"build": "tsc",
"start": "tsc && node ./dist/src/index.js",
"start:dev": "ts-node ./src/index.ts",
"lint": "eslint ./",
"lint:fix": "eslint ./ --fix",
"pre-commit": "pre-commit run --all-files",
"test": "GITLAB_HOST=test GITLAB_TOKEN=test jest",
"prepublishOnly": "tsc",
"prepack": "tsc"
},
"devDependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/config": "3.3.4",
"@types/jest": "29.5.12",
"@types/node": "20.12.12",
"@typescript-eslint/eslint-plugin": "7.9.0",
"@typescript-eslint/parser": "7.9.0",
"eslint": "8.57.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "18.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jest": "27.9.0",
"eslint-plugin-jsdoc": "48.4.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-unicorn": "51.0.1",
"jest": "29.7.0",
"prettier": "2.8.8",
"semantic-release": "23.1.1",
"ts-jest": "29.1.2",
"ts-node": "10.9.2",
"typescript": "5.4.5"
},
"dependencies": {
"@gitbeaker/rest": "40.0.3",
"chalk": "4.1.2",
"commander": "12.0.0",
"config": "3.3.11",
"dotenv": "16.4.5",
"winston": "3.13.0"
}
}