-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
65 lines (65 loc) · 1.89 KB
/
package.json
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": "versionist",
"version": "7.0.4",
"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": "[email protected]:balena-io/versionist.git"
},
"preferGlobal": true,
"bin": {
"versionist": "./bin/cli.js"
},
"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 <[email protected]>",
"license": "Apache-2.0",
"devDependencies": {
"@balena/lint": "^6.2.0",
"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",
"@types/handlebars": "^4.1.0",
"@types/handlebars-helpers": "^0.5.3",
"@types/lodash": "^4.14.186",
"async": "^2.6.4",
"balena-semver": "^2.3.2",
"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",
"yaml": "^2.1.3",
"yargs": "^11.1.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"versionist": {
"publishedAt": "2024-04-08T17:48:30.502Z"
}
}