-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.29 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.29 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
{
"name": "gitrole",
"version": "0.7.5",
"description": "Switch your full git identity in one command.",
"type": "module",
"bin": {
"gitrole": "dist/cli/index.js"
},
"files": [
"dist"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"build:test": "tsc -p tsconfig.test.json",
"docs:build": "eleventy",
"docs:dev": "eleventy --serve",
"prepack": "npm run build",
"test": "npm run build:test && node --test dist-test/test/*.test.js",
"test:e2e": "npm run build && npm run build:test && node --test dist-test/test/e2e/*.test.js",
"test:release": "npm test && npm run test:e2e"
},
"keywords": [
"git",
"identity",
"profile",
"switch",
"cli",
"ssh",
"github",
"github-config",
"dev-tool",
"identity-management"
],
"author": "Sara Loera",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/synsoftworks/gitrole.git"
},
"homepage": "https://docs.gitrole.dev",
"bugs": {
"url": "https://github.com/synsoftworks/gitrole/issues"
},
"dependencies": {
"chalk": "^5.4.1",
"commander": "^14.0.1"
},
"devDependencies": {
"@11ty/eleventy": "^3.1.5",
"@types/node": "^24.6.0",
"typescript": "^5.9.3"
}
}