-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.15 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
{
"name": "@touch4it/scripts",
"version": "0.2.0",
"description": "Repository scripts. `mr` creates a GitLab merge request from the repository's MR template, over git push options — no API token required.",
"type": "module",
"bin": {
"scripts": "dist/bin.js"
},
"files": [
"dist"
],
"engines": {
"node": ">=20.12.0"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"mr": "node src/bin.ts mr",
"lint": "eslint src test eslint.config.js --fix",
"lint:ci": "eslint src test eslint.config.js",
"typecheck": "tsc --noEmit",
"test": "node --test",
"test:watch": "node --test --watch",
"test:coverage": "node --test --experimental-test-coverage",
"build": "tsc -p tsconfig.build.json",
"check": "npm run lint:ci && npm run typecheck && npm run test",
"prepublishOnly": "npm run check && npm run build"
},
"overrides": {
"eslint-config-xo": {
"typescript": "6.0.3"
}
},
"dependencies": {
"@clack/prompts": "^1.7.0"
},
"devDependencies": {
"@types/node": "^26.1.1",
"eslint": "^10.7.0",
"eslint-config-touch4it": "^21.0.0",
"typescript": "^7.0.2"
}
}