-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.78 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
{
"name": "boatman",
"version": "1.0.0",
"description": "Smart quality gate installer with ratchet mechanism — prevents metric regressions in JavaScript/TypeScript projects",
"type": "module",
"bin": {
"boatman": "bin/boatman.mjs"
},
"files": [
"bin/",
"src/"
],
"keywords": [
"quality-gate",
"ci",
"ratchet",
"eslint",
"coverage",
"security",
"github-actions",
"gitlab-ci"
],
"author": "Rafael Vieiras",
"license": "MIT",
"engines": {
"node": ">=24"
},
"packageManager": "npm@11.6.2",
"homepage": "https://github.com/rafaelvieiras/boatman#readme",
"bugs": {
"url": "https://github.com/rafaelvieiras/boatman/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rafaelvieiras/boatman.git"
},
"devDependencies": {
"@commitlint/cli": "^21.0.1",
"@commitlint/config-conventional": "^21.0.1",
"@eslint/js": "^10.0.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.8",
"@semantic-release/npm": "^13.1.5",
"@stryker-mutator/core": "^9.6.1",
"@stryker-mutator/vitest-runner": "^9.6.1",
"@vitest/coverage-v8": "^4.1.5",
"eslint": "^10.3.0",
"globals": "^17.6.0",
"husky": "^9.1.7",
"jscpd": "^4.1.0",
"semantic-release": "^25.0.3",
"vitest": "^4.1.5"
},
"scripts": {
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"quality:mutation": "npx stryker run",
"quality:gate": "node scripts/quality-gate.mjs",
"quality:gate:local": "node scripts/quality-gate.mjs --local",
"quality:baseline": "node scripts/quality-gate.mjs --generate-baseline",
"duplication": "jscpd src --reporters json --output reports/",
"prepare": "husky"
}
}