-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.08 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
{
"private": true,
"name": "raspberrypi-motd",
"description": "A custom message of the day (MOTD) for Raspberry Pi OS.",
"version": "0.1.0",
"author": {
"name": "Iolar Demartini Junior",
"email": "[email protected]",
"url": "https://demartini.dev"
},
"contributors": [
{
"name": "Raspberry Pi MOTD Contributors",
"url": "https://github.com/demartini/raspberrypi-motd/graphs/contributors"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/demartini/raspberrypi-motd.git"
},
"keywords": [
"raspberrypi",
"motd",
"bash"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/demartini/raspberrypi-motd/issues"
},
"homepage": "https://github.com/demartini/raspberrypi-motd#readme",
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"husky": "^4.3.8",
"standard-version": "^9.1.1"
},
"scripts": {
"release": "standard-version"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}