-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.35 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
{
"name": "@readachangelog/cli",
"private": false,
"version": "1.4.2",
"description": "Keep a changelog? Read a changelog.",
"author": "Joseph D. Purcell",
"keywords": [
"changelog",
"keepachangelog"
],
"homepage": "https://github.com/josephdpurcell/readachangelog",
"license": "ISC",
"main": "./dist/index.js",
"bin": {
"readachangelog": "./dist/cli.js"
},
"files": [
"CHANGELOG.md",
"dist/**/*",
"!dist/**/*.test.js"
],
"scripts": {
"exec": "npm run build && node dist/cli.js",
"distexec": "node dist/cli.js",
"dev": "ts-node ./src/cli.ts",
"clean": "rimraf ./dist/ ./exec/",
"build": "npm run clean && tsc",
"test": "npm run build && jest",
"bundle": "npm run build && pkg . --out-dir ./exec/",
"pub": "grep 'COMMAND_VERSION.*'$(cat package.json | jq -r '.version') src/dto.ts || false && npm run build && npm publish --access public"
},
"devDependencies": {
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@types/jest": "^29.5.14",
"ava": "^6.1.3",
"eslint-config-love": "^89.0.1",
"jest": "^29.7.0",
"pkg": "^5.8.1",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2"
},
"dependencies": {
"@npmcli/config": "^9.0.0",
"changelog-parser": "^3.0.1",
"commander": "^12.1.0",
"pacote": "^20.0.0",
"semver": "^7.6.3"
}
}