-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1008 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
39
40
41
42
{
"name": "create-project",
"version": "1.0.1",
"description": "Project Description",
"main": "index.js",
"engines": {
"node": ">=20.5.1"
},
"scripts": {
"build": "echo \"Warning: no build specified\" && exit 0",
"commit": "cz",
"release": "standard-version",
"prepare": "husky install",
"test": "echo \"Warning: no test specified\" && exit 0"
},
"keywords": [],
"author": "Name <email>",
"license": "ISC",
"private": true,
"repository": {
"url": "https://...",
"type": "git"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"prettier": "3.1.0",
"standard-version": "^9.5.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}