-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.47 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.47 KB
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
{
"name": "cli-mr-creator",
"version": "3.2.0",
"description": "Create a merge request from the terminal for Gitlab",
"keywords": [
"cli",
"gitlab",
"typescript"
],
"bugs": {
"url": "https://github.com/CMarzin/cli-mr-creator/issues"
},
"author": "Corentin Marzin ( https://corentinmarzin.fr/ )",
"repository": {
"type": "git",
"url": "git+https://github.com/CMarzin/cli-mr-creator"
},
"license": "MIT",
"files": [
"bin"
],
"type": "module",
"main": "bin/cli.js",
"bin": {
"cli-mr-creator": "bin/cli.js"
},
"engines": {
"node": "20.17.0"
},
"scripts": {
"cli-mr-creator": "cli-mr-creator",
"dev": "NODE_ENV=dev tsx src/cli.ts",
"build": "tsc && npm run format",
"format": "prettier --write .",
"check-format": "prettier --check .",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest --coverage.enabled --ui",
"ci": "npm run build && npm run check-format && npm run test",
"local-release": "changeset version && changeset publish",
"prepublishOnly": "npm run ci"
},
"dependencies": {
"axios": "^1.7.2",
"colors": "^1.4.0",
"dotenv": "^16.4.5",
"enquirer": "^2.4.1",
"nodegit": "^0.28.0-alpha.33"
},
"devDependencies": {
"@changesets/cli": "^2.29.5",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"prettier": "^3.6.2",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
}
}