-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 761 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 761 Bytes
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
{
"name": "REPO_NAME",
"description": "SHORT_DESCRIPTION",
"author": "FULLNAME <[INSERT CONTACT METHOD]>",
"version": "0.0.1",
"url": "https://github.com/USERNAME/REPO_NAME/issues",
"license": "AGPL-3.0",
"scripts": {
"check": "prettier --ignore-path .gitignore --check . '!{CODE_OF_CONDUCT.md,LICENSE.md,_layouts/default.html}'",
"commit": "cz",
"format": "prettier --ignore-path .gitignore --write . '!{CODE_OF_CONDUCT.md,LICENSE.md,_layouts/default.html}'",
"prepare": "prek install"
},
"devDependencies": {
"@j178/prek": "^0.3.4",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"prettier": "^3.3.3"
},
"type": "module",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}