-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.74 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
{
"name": "odd-mac",
"private": true,
"description": "Odd:Mac is a shell script which installs all the necessary software you need to turn your Mac into a productive power house for web & app development, especially optimised for Odd:Pub platform.",
"version": "1.0.0",
"author": "Odduse <info@odduse.com>",
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@semantic-release/changelog": "^3.0.4",
"@semantic-release/commit-analyzer": "^6.3.0",
"@semantic-release/git": "^7.0.16",
"@semantic-release/github": "^5.4.3",
"@semantic-release/npm": "^5.1.15",
"@semantic-release/release-notes-generator": "^7.3.0",
"commitizen": "^4.0.3",
"husky": "^3.0.5",
"semantic-release": "^15.13.24"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"subject-case": [
2,
"never",
[
"start-case",
"pascal-case"
]
]
}
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/changelog",
"@semantic-release/git"
],
"branch": "master"
},
"engines": {
"node": ">=12",
"npm": ">=6"
},
"scripts": {
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/Odd-use/odd-mac"
},
"bugs": {
"url": "https://github.com/Odd-use/odd-mac/issues"
},
"keywords": [
"bash",
"shell"
],
"license": "https://github.com/Odd-use/odd-mac/blob/master/LICENSE"
}