-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.96 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
{
"name": "versionist",
"version": "8.1.2",
"main": "bin/versionist.js",
"description": "Flexible CHANGELOG generation toolkit that adapts to your commit conventions",
"homepage": "https://github.com/balena-io/versionist",
"repository": {
"type": "git",
"url": "git@github.com:product-os/versionist.git"
},
"preferGlobal": true,
"bin": {
"versionist": "./bin/cli.js"
},
"engines": {
"node": ">=20"
},
"scripts": {
"pretest": "npm run prepack && npx tsc --noEmit --project tsconfig.dev.json",
"test": "mocha tests -R spec && node tests/cli/run",
"posttest": "npm run lint",
"test-cli": "npm run pretest && node tests/cli/run",
"lint": "balena-lint -e ts -e js src/ tests/ bin/ && tsc --noEmit",
"prepare": "node -e \"try { require('husky').install() } catch (e) {if (e.code !== 'MODULE_NOT_FOUND') throw e}\"",
"prepack": "npx tsc",
"prettify": "balena-lint -e ts -e js --fix src/ tests/ bin/",
"versionist": "./bin/cli.js"
},
"author": "Juan Cruz Viotti <juan@balena.io>",
"license": "Apache-2.0",
"devDependencies": {
"@balena/lint": "^6.2.0",
"@types/handlebars": "^4.1.0",
"@types/handlebars-helpers": "^0.5.3",
"@types/lodash": "^4.14.186",
"husky": "^8.0.1",
"indent-string": "^4.0.0",
"lint-staged": "^13.0.3",
"mocha": "^6.2.3",
"mochainon": "^1.0.0",
"shelljs": "^0.8.5",
"tmp": "^0.0.33",
"touch": "^3.1.0",
"typescript": "^4.8.4"
},
"dependencies": {
"@octokit/rest": "^18.12.0",
"async": "^2.6.4",
"balena-semver": "^3.0.1",
"chalk": "^4.1.2",
"debug": "2.6.9",
"handlebars": "^4.7.7",
"handlebars-helpers": "^0.10.0",
"lodash": "^4.17.21",
"markdown": "^0.5.0",
"replace-in-file": "^4.3.1",
"smol-toml": "^1.4.2",
"yaml": "^2.1.3",
"yargs": "^11.1.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"versionist": {
"publishedAt": "2026-09-07T12:44:13.004Z"
}
}