-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
114 lines (114 loc) · 2.87 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "@favware/cliff-jumper",
"version": "1.5.1",
"description": "A small CLI tool to create a semantic release and git-cliff powered Changelog",
"author": "@favware",
"license": "MIT",
"type": "module",
"main": "dist/cli.js",
"bin": {
"cj": "./dist/cli.js",
"cliff-jumper": "./dist/cli.js"
},
"imports": {
"#commands/*": "./dist/commands/*.js",
"#lib/*": "./dist/lib/*.js",
"#root/*": "./dist/*.js"
},
"sideEffects": "false",
"files": [
"dist/**/*.js"
],
"scripts": {
"debug": "node . --first-release --verbose",
"start": "node .",
"lint": "eslint src --ext ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"update": "yarn upgrade-interactive",
"clean": "node scripts/clean.mjs",
"build": "tsc -b src",
"watch": "tsc -b src -w",
"prepack": "yarn build",
"prepare": "husky install .github/husky"
},
"dependencies": {
"@sapphire/result": "^1.1.1",
"@sapphire/utilities": "^3.6.2",
"colorette": "^2.0.16",
"commander": "^9.2.0",
"conventional-changelog-angular": "^5.0.13",
"conventional-recommended-bump": "^6.1.0",
"js-yaml": "^4.1.0",
"typescript": "^4.6.4"
},
"devDependencies": {
"@commitlint/cli": "^16.2.4",
"@commitlint/config-conventional": "^16.2.4",
"@sapphire/eslint-config": "^4.3.4",
"@sapphire/prettier-config": "^1.4.3",
"@sapphire/ts-config": "^3.3.4",
"@types/conventional-recommended-bump": "^6.1.0",
"@types/js-yaml": "^4.0.5",
"@types/node": "^17.0.25",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.4.1",
"prettier": "^2.6.2",
"pretty-quick": "^3.1.3",
"ts-node": "^10.7.0"
},
"resolutions": {
"acorn": "^8.7.1",
"ansi-regex": "^5.0.1",
"minimist": "^1.2.6"
},
"engines": {
"node": ">=v16"
},
"repository": {
"type": "git",
"url": "git+https://github.com/favware/cliff-jumper.git"
},
"bugs": {
"url": "https://github.com/favware/cliff-jumper/issues"
},
"homepage": "https://github.com/favware/cliff-jumper",
"keywords": [
"git-cliff",
"favware",
"cli",
"generator",
"changelog",
"semver",
"commit",
"conventional-changelog",
"keepachangelog",
"changelog-generator",
"conventional-commits"
],
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{mjs,js,ts}": "eslint --fix --ext mjs,js,ts"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"access": "public"
},
"eslintConfig": {
"extends": "@sapphire"
},
"packageManager": "[email protected]"
}