-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.48 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.48 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
{
"name": "@mikinho/autover",
"version": "2.1.0",
"description": "Strict SemVer build-metadata versioner for Node.js — deterministic timestamps, workspace-aware, safe post-commit amend with reentrancy lock",
"bin": {
"autover": "bin/autover.js"
},
"type": "module",
"license": "MIT",
"author": "Michael Welter <me@mikinho.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/mikinho/node-autover.git"
},
"bugs": {
"url": "https://github.com/mikinho/node-autover/issues"
},
"homepage": "https://github.com/mikinho/node-autover#readme",
"keywords": [
"semver",
"versioning",
"semantic-versioning",
"git-hooks",
"post-commit",
"build-metadata",
"prerelease",
"workspaces",
"monorepo",
"npm",
"nodejs",
"cli",
"ci-cd",
"package-version",
"developer-tools"
],
"engines": {
"node": ">=18"
},
"dependencies": {
"fast-glob": "^3.3.3"
},
"devDependencies": {
"@eslint/js": "^9.37.0",
"@eslint/json": "^0.13.2",
"@eslint/markdown": "^7.4.0",
"eslint": "^9.37.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^16.4.0",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"yuidocjs": "^0.10.2"
},
"scripts": {
"docs": "node scripts/gen-docs.mjs",
"docs:clean": "rimraf docs || rmdir /s /q docs 2> NUL || true",
"docs:open": "node -e \"import('node:child_process').then(m=>m.exec(process.platform==='win32'?'start docs/index.html':(process.platform==='darwin'?'open docs/index.html':'xdg-open docs/index.html')))\"",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"ver:preview": "npx autover --no-amend --dry-run --short",
"ver:apply": "npx autover --guard-unchanged --short",
"test": "files=$(git diff --cached --name-only --diff-filter=ACMRTUXB | tr '\\n' ' '); [ -z \"$files\" ] && exit 0 || eslint --no-warn-ignored $files",
"test:unit": "node --test 'tests/**/*.test.js'",
"prepublishOnly": "npm test",
"postversion": "git push && git push --tags"
},
"publishConfig": {
"access": "public"
},
"files": [
"bin",
"README.md",
"LICENSE"
]
}