-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.13 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.13 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
{
"name": "@nlib/changelog",
"description": "A command to generate CHANGELOG.md from commit history",
"publishConfig": {
"access": "public"
},
"version": "0.3.2",
"license": "Apache-2.0",
"author": {
"name": "Kei Ito",
"email": "kei.itof@gmail.com",
"url": "https://gojabako.zone"
},
"homepage": "https://github.com/nlibjs/changelog",
"repository": "https://github.com/nlibjs/changelog",
"engines": {
"node": ">=14"
},
"type": "module",
"main": "./lib/index.js",
"files": [
"lib",
"!**/*.test.*"
],
"bin": {
"changelog": "./lib/cli.js"
},
"scripts": {
"build": "tsc",
"test": "run-s build test:*",
"test:unit": "tsm-test lib",
"lint": "biome lint",
"version": "node ./lib/cli.js --output CHANGELOG.md && git add CHANGELOG.md"
},
"dependencies": {
"@nlib/typing": "3.0.1",
"commander": "12.1.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@nlib/tsm": "1.1.0",
"@types/node": "22.13.9",
"npm-run-all": "4.1.5",
"typescript": "5.9.3"
},
"renovate": {
"extends": [
"github>nlibjs/renovate-config"
]
}
}