-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.66 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "unitest",
"description": "Deno-first universal unit testing framework",
"private": true,
"scripts": {
"commit": "cz",
"prepare": "husky install",
"template": "HYGEN_TMPLS=_tools pnpm hygen matcher new --name --",
"release": "semantic-release"
},
"devDependencies": {
"@commitlint/cli": "^14.1.0",
"@commitlint/config-conventional": "^14.1.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"commitizen": "^4.2.4",
"commitlint": "^14.1.0",
"cz-conventional-changelog": "^3.3.0",
"husky": "^7.0.4",
"hygen": "^6.1.0",
"lint-staged": "^11.2.6",
"semantic-release": "^18.0.0",
"yaml-lint": "^1.2.4"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"release": {
"branches": [
"main",
{
"name": "beta",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
"@semantic-release/github",
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.ts": [
"deno run --allow-read --allow-write _tools/copyright.ts",
"deno fmt -c deno.json"
],
"*.{yaml,yml}": "yamllint"
}
}