-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.63 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
{
"name": "github-sane-defaults",
"version": "0.1.4",
"description": "Apply sane GitHub repository defaults and branch rulesets.",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/dutifuldev/github-sane-defaults.git"
},
"bugs": {
"url": "https://github.com/dutifuldev/github-sane-defaults/issues"
},
"homepage": "https://github.com/dutifuldev/github-sane-defaults#readme",
"keywords": [
"github",
"repository",
"rulesets",
"branch-protection",
"cli"
],
"engines": {
"node": ">=22.0.0"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist/src/**",
"README.md",
"LICENSE"
],
"bin": {
"github-sane-defaults": "dist/src/cli/main.js"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"format": "prettier --check .",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"coverage": "vitest run --coverage",
"dry": "slophammer-ts dry .",
"slophammer": "slophammer-ts check .",
"mutate": "stryker run --dryRunOnly",
"check": "npm run format && npm run lint && npm run typecheck && npm test && npm run coverage && npm run build"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@stryker-mutator/core": "^9.6.1",
"@stryker-mutator/typescript-checker": "^9.6.1",
"@stryker-mutator/vitest-runner": "^9.6.1",
"@types/node": "^22.0.0",
"@vitest/coverage-v8": "^3.0.0",
"eslint": "^9.0.0",
"prettier": "^3.0.0",
"slophammer-ts": "^0.3.0",
"typescript": "^5.0.0",
"typescript-eslint": "^8.0.0",
"vitest": "^3.0.0"
}
}