-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 2.99 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 2.99 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
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
115
116
117
118
119
120
121
122
{
"name": "organize-codebase",
"version": "1.2.2",
"description": "Quickly organize your codebase with useful automation tools in development",
"main": "bin/organize-codebase.js",
"bin": {
"organize-codebase": "./bin/organize-codebase.js"
},
"type": "module",
"scripts": {
"prepare": "husky install",
"commit": "cz",
"dev": "concurrently \"tsc -w\"",
"start": "node src/organize-codebase.js",
"semantic-release": "semantic-release",
"build": "tsc"
},
"keywords": [
"eslint",
"prettier",
"commitlint",
"commitizen",
"husky",
"standard",
"version",
"semantic-version",
"automation",
"cli"
],
"author": "Laurence B. Ininda",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/clear": "^0.1.2",
"@types/cross-spawn": "^6.0.2",
"@types/eslint": "^8.4.1",
"@types/figlet": "^1.5.4",
"@types/inquirer": "^8.2.0",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"commitizen": "^4.2.4",
"concurrently": "^7.0.0",
"conventional-changelog-eslint": "^3.0.9",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.9.0",
"husky": "^7.0.0",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"pretty-quick": "^3.1.3",
"semantic-release": "^19.0.2",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"chalk": "^5.0.0",
"clear": "^0.1.0",
"clui": "^0.3.6",
"commander": "^9.0.0",
"configstore": "^6.0.0",
"cross-spawn": "^7.0.3",
"figlet": "^1.5.2",
"inquirer": "^8.2.0",
"minimist": "^1.2.5",
"v8-compile-cache": "^2.3.0"
},
"repository": {
"type": "git",
"url": "https://github.com/laudebugs/organize-codebase.git"
},
"release": {
"branches": [
"+([0-9])?(.{+([0-9]),x}).x",
"main",
"next",
{
"name": "beta",
"prerelease": true
},
{
"name": "alpha",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogFile": "docs/CHANGELOG.md",
"changelogTitle": "# Changelog"
}
],
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"docs",
"package.json",
"package-lock.json"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
}
}