-
-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
111 lines (111 loc) · 2.9 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "changesets-gitlab",
"version": "0.12.1",
"type": "module",
"repository": "git+https://github.com/rx-ts/changesets-gitlab.git",
"author": "JounQin (https://www.1stG.me) <[email protected]>",
"funding": "https://opencollective.com/unts",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"bin": {
"changesets-gitlab": "lib/cli.js"
},
"main": "./lib/index.cjs",
"module": "./lib/index.js",
"exports": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js",
"require": "./lib/index.cjs"
},
"types": "./lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"build": "run-p build:*",
"build:r": "r -f cjs",
"build:ts": "tsc -p tsconfig.lib.json",
"cli": "node --loader ts-node/esm src/cli.ts",
"lint": "run-p lint:*",
"lint:es": "eslint . --cache -f friendly",
"lint:tsc": "tsc --noEmit",
"prepare": "simple-git-hooks && yarn-deduplicate --strategy fewer || exit 0",
"prerelease": "yarn build",
"release": "changeset publish",
"test": "node --experimental-vm-modules ./node_modules/.bin/jest",
"typecov": "type-coverage"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@changesets/assemble-release-plan": "^5.2.4",
"@changesets/config": "^2.3.1",
"@changesets/errors": "^0.1.4",
"@changesets/parse": "^0.3.16",
"@changesets/pre": "^1.0.14",
"@changesets/read": "^0.5.9",
"@gitbeaker/rest": "^39.23.0",
"@manypkg/get-packages": "^1.1.3",
"@sentry/node": "^7.80.1",
"commander": "^11.1.0",
"dotenv": "^16.3.1",
"fs-extra": "^11.1.1",
"global-agent": "^3.0.0",
"human-id": "^4.1.0",
"js-yaml": "^4.1.0",
"markdown-table": "^3.0.3",
"mdast-util-to-string": "^4.0.0",
"micromatch": "^4.0.5",
"remark-parse": "^11.0.0",
"remark-stringify": "^11.0.0",
"resolve-from": "^5.0.0",
"semver": "^7.5.4",
"unified": "^11.0.4"
},
"devDependencies": {
"@1stg/lib-config": "^12.0.1",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"@types/global-agent": "^2.1.3",
"@types/jest": "^29.5.11",
"@types/js-yaml": "^4.0.9",
"@types/micromatch": "^4.0.6",
"@types/web": "^0.0.128",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"type-coverage": "^2.27.0",
"typescript": "^5.3.3",
"yarn-deduplicate": "^6.0.2"
},
"jest": {
"preset": "ts-jest",
"extensionsToTreatAsEsm": [
".ts"
],
"transform": {
"^.+\\.tsx?$": [
"ts-jest",
{
"useESM": true
}
]
},
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.js$": "$1"
}
},
"typeCoverage": {
"atLeast": 90.6,
"cache": true,
"detail": true,
"ignoreAsAssertion": true,
"ignoreNested": true,
"ignoreNonNullAssertion": true,
"showRelativePath": true,
"strict": true,
"update": true
}
}