-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
87 lines (87 loc) · 2.14 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "news-fragments",
"version": "3.0.18",
"description": "A release-it plugin to manipulate changelogs",
"main": "src/index.js",
"type": "module",
"scripts": {
"pretest": "npm run lint:fix",
"test": "npx vitest --run --coverage",
"test:ui": "npx vitest --ui",
"lint": "eslint . --ext .js --ignore-pattern node_modules/",
"lint:fix": "eslint . --ext .js --fix --ignore-pattern node_modules/",
"release": "release-it"
},
"repository": {
"type": "git",
"url": "https://github.com/grupoboticario/news-fragments.git"
},
"keywords": [
"release",
"release-it",
"release-it-plugin",
"changelog",
"grupoboticario"
],
"author": "Grupo Boticário",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/grupoboticario/news-fragments/issues"
},
"homepage": "https://github.com/grupoboticario/news-fragments#readme",
"devDependencies": {
"@release-it/bumper": "^6.0.1",
"@vitest/coverage-v8": "^2.0.0",
"@vitest/ui": "^2.0.0",
"eslint": "^8",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-simple-import-sort": "^12.0.0",
"fs-monkey": "^1.0.6",
"memfs": "^4.9.2",
"mockdate": "^3.0.5",
"prettier": "^3.0.0",
"pretty-quick": "^4.0.0",
"semver": "^7.3.5",
"vitest": "^2.0.0"
},
"dependencies": {
"chalk": "^5.2.0",
"chalk-template": "^1.0.0",
"handlebars": "^4.7.7",
"joi": "^17.12.0",
"marked": "^14",
"marked-terminal": "^7",
"meow": "^13.0.0",
"moment": "^2.29.1",
"release-it": "^17.0.0"
},
"engines": {
"node": ">=18"
},
"release-it": {
"npm": false,
"hooks": {
"before:init": "npm test",
"after:bump": "node myself-release.js"
},
"plugins": {
"@release-it/bumper": {
"out": [
{
"file": "sonar-project.properties",
"type": "text/x-properties",
"path": "sonar.projectVersion"
},
{
"file": "package.json",
"path": "version"
}
]
}
}
},
"bin": {
"news-fragments": "src/cli/index.js"
}
}