-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.77 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
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "base-template",
"version": "8.1.0",
"description": "Fully automated template repository which provides full compliance with the community standards.",
"private": true,
"engines": {
"node": "^20.13.1",
"npm": "^10.8.0"
},
"main": "index.js",
"scripts": {
"lint": "run-s --continue-on-error 'lint:*'",
"lint:credentials": "[ \"$CI\" = 'true' ] || secretlint \"**/*\"",
"lint:md": "markdownlint . \".?*/**/*.{md,markdown}\"",
"lint:prettier": "prettier --check .",
"format": "run-s --continue-on-error 'format:*'",
"format:md": "npm run lint:md -- --fix",
"format:prettier": "prettier --write .",
"test": "echo \"Error: no test specified\" && exit 1",
"commit": "cz",
"cm": "npm run commit",
"prepare": "[ \"$CI\" = 'true' ] || husky"
},
"repository": {
"type": "git",
"url": "https://github.com/haru52/base_template.git"
},
"keywords": [
"template"
],
"author": {
"name": "haru",
"url": "https://haru52.com/"
},
"license": "WTFPL",
"bugs": {
"url": "https://github.com/haru52/base_template/issues"
},
"homepage": "https://haru52.github.io/base_template/",
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@commitlint/cz-commitlint": "^19.2.0",
"@secretlint/secretlint-rule-preset-recommend": "^8.2.4",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"commitizen": "^4.3.0",
"conventional-changelog-conventionalcommits": "^7.0.2",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"markdownlint-cli": "^0.41.0",
"npm-check-updates": "^16.14.20",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.2",
"secretlint": "^8.2.4",
"semantic-release": "^24.0.0"
}
}