-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.11 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.11 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
70
{
"name": "changelog-guru",
"version": "5.0.2",
"description": "Git changelog generator",
"license": "MIT",
"homepage": "https://github.com/keindev/changelog-guru#readme",
"author": "Daniil Ryazanov <kein@tagproject.ru>",
"keywords": [
"automated",
"changelog",
"cli",
"generator",
"github"
],
"bugs": "https://github.com/keindev/changelog-guru/issues",
"types": "./lib/index.d.ts",
"type": "module",
"exports": {
".": "./lib/index.js",
"./lib/utils/*": "./lib/utils/*.js",
"./lib/core/*": "./lib/core/*.js"
},
"bin": {
"changelog": "bin/changelog.js",
"changelog-guru": "bin/changelog.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/keindev/changelog-guru.git"
},
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"build": "run-s build:*",
"build:ts": "rimraf lib && tsc --extendedDiagnostics",
"generate": "run-s generate:*",
"generate:changelog": "node --loader ts-node/esm src/cli/bin.ts generate --bump",
"generate:ghinfo": "ghinfo generate -d media -t utils",
"lint": "run-s lint:*",
"lint:eslint": "rimraf coverage && eslint src --ext .ts",
"lint:spell": "cspell -c .vscode/cspell.json --no-summary \"**/*.{js,ts,tsx,md,yml,json}\"",
"prepare": "run-s prepare:*",
"prepare:config": "ts-package-shared-config",
"prepare:docs": "docs-shared-config",
"prepare:husky": "husky install",
"prepare:vscode": "vscode-shared-config",
"release": "run-s prepare lint test build generate",
"test": "run-s test:*",
"test:jest": "node --experimental-vm-modules node_modules/.bin/jest"
},
"dependencies": {
"cosmiconfig": "9.0.0",
"deepmerge": "^4.3.1",
"dotenv": "^16.4.5",
"findup-sync": "^5.0.0",
"gh-gql": "^5.0.1",
"package-json-helper": "^6.0.1",
"string-lookup-manager": "^4.0.2",
"tasktree-cli": "^8.1.0",
"universal-user-agent": "^7.0.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"@tagproject/ts-package-shared-config": "^11.0.4",
"@types/findup-sync": "^4.0.4",
"@types/semver": "^7.5.8",
"ts-node": "^10.9.2"
}
}