-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.01 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
{
"name": "wilsonsio",
"version": "0.0.0",
"description": "Ecosystem for personal webdite",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"release" : "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SgiobairOg/WilsonsIO.git"
},
"author": "Aoibhe Wilson <aoibhe@wilsons.io>",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/SgiobairOg/WilsonsIO/issues"
},
"homepage": "https://github.com/SgiobairOg/WilsonsIO#readme",
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"husky": "^8.0.3",
"standard-version": "^9.5.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"subject-case": [
2,
"never",
[
"start-case",
"pascal-case"
]
]
}
}
}