-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1010 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
36
37
38
{
"name": "dotig",
"description": "A dotfiles manager using Git.",
"keywords": [
"dotfiles",
"git"
],
"version": "2.0.1",
"license": "MIT",
"author": {
"name": "Armand Philippot",
"url": "https://www.armandphilippot.com"
},
"homepage": "https://github.com/ArmandPhilippot/dotig#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ArmandPhilippot/dotig.git"
},
"bugs": {
"url": "https://github.com/ArmandPhilippot/dotig/issues"
},
"scripts": {
"bump": "replace-in-files --regex='_DOTIG_VERSION=\"\\d+\\.\\d+\\.\\d+\"' --replacement='_DOTIG_VERSION=\"'$npm_package_version'\"' dotig",
"release": "standard-version -a"
},
"devDependencies": {
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^13.1.0",
"husky": "^7.0.1",
"replace-in-files-cli": "^1.0.0",
"standard-version": "^9.3.1"
},
"standard-version": {
"scripts": {
"postbump": "npm run bump && git add -A"
}
}
}