generated from link-foundation/js-ai-driven-development-pipeline-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.95 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.95 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "glab-setup-git-identity",
"version": "0.6.1",
"description": "A tool to setup git identity based on current GitLab user",
"type": "module",
"main": "src/index.js",
"bin": {
"glab-setup-git-identity": "src/cli.js"
},
"types": "src/index.d.ts",
"exports": {
".": {
"types": "./src/index.d.ts",
"import": "./src/index.js"
}
},
"scripts": {
"test": "node --test tests/",
"test:bun": "bun test tests/",
"test:deno": "deno test --allow-all",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"check:duplication": "jscpd .",
"check": "npm run lint && npm run format:check && npm run check:duplication",
"prepare": "husky || true",
"changeset": "changeset",
"changeset:version": "node scripts/changeset-version.mjs",
"changeset:publish": "changeset publish",
"changeset:status": "changeset status --since=origin/main"
},
"keywords": [
"gitlab",
"glab",
"git",
"identity",
"setup",
"cli",
"git-config",
"user-name",
"user-email"
],
"author": "Link Foundation",
"license": "Unlicense",
"repository": {
"type": "git",
"url": "https://github.com/link-foundation/glab-setup-git-identity"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"command-stream": "^0.9.4",
"lino-arguments": "^0.2.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"@changesets/cli": "^2.29.7",
"eslint": "^9.38.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"husky": "^9.1.7",
"jscpd": "^4.0.5",
"lint-staged": "^16.2.6",
"prettier": "^3.6.2",
"test-anywhere": "^0.8.48"
},
"lint-staged": {
"*.{js,mjs,cjs}": [
"eslint --fix --max-warnings 0",
"prettier --write",
"prettier --check"
],
"*.md": [
"prettier --write",
"prettier --check"
]
}
}