-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 867 Bytes
/
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
{
"name": "@open-sauced/conventional-commit",
"version": "1.0.1",
"license": "MIT",
"bin": {
"conventional-commit": "index.js"
},
"main": "index.js",
"author": "TED Vortex <[email protected]> (vortex.name)",
"engines": {
"node": ">=14",
"npm": ">=6"
},
"bugs": "https://github.com/open-sauced/conventional-commit/issues",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/open-sauced/conventional-commit.git"
},
"dependencies": {
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0"
},
"scripts": {
"push": "npx cz",
"semantic-release": "npx semantic-release",
"test": "node ."
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@open-sauced/check-engines": "^1.1.1",
"@open-sauced/semantic-release-conventional-config": "^2.0.4"
}
}