-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.55 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
{
"name": "@team-monite/sync-gitlab-repo-submodule-action",
"private": true,
"bin": "bin.mjs",
"scripts": {
"dev": "yarn run clean && tsc --watch --project tsconfig.build.json --noEmitOnError false",
"build": "yarn run clean && tsc --build tsconfig.build.json",
"clean": "rimraf dist/",
"typecheck": "tsc --noEmit",
"lint": "eslint . --ext .ts,cjs,mjs",
"bin": "node bin.mjs",
"prepare": "husky install"
},
"sideEffects": false,
"type": "module",
"exports": {
".": "./build/index.js",
"./package.json": "./package.json",
"./*": "./build/*.js"
},
"dependencies": {
"@gitbeaker/requester-utils": "~40.0.2",
"@gitbeaker/rest": "~40.0.2",
"chalk": "~5.3.0",
"commander": "~12.0.0",
"dotenv": "~16.4.1",
"simple-git": "~3.24.0"
},
"devDependencies": {
"@types/node": "~20.12.4",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"lint-staged": "^15.2.10",
"prettier": "^3.2.5",
"rimraf": "~5.0.5",
"typescript": "~5.4.4"
},
"resolutions": {
"fast-glob@npm:3.3.2/micromatch": "4.0.8"
},
"files": [
"dist",
"src"
],
"prettier": {
"singleQuote": true,
"bracketSpacing": true,
"trailingComma": "es5"
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}