-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·35 lines (35 loc) · 1.09 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
{
"name": "template",
"private": false,
"scripts": {
"commitlint": "commitlint --verbose --edit",
"lint": "mega-linter-runner",
"prepare": "is-ci || husky install",
"release": "semantic-release --ci --extends ./.release.json",
"release-dry-run": "semantic-release --no-ci --dry-run --extends ./.release.json",
"update": "run-s \"update:*\"",
"update:upgrade": "ncu --upgrade --packageFile package.json",
"update:install": "npm install"
},
"devDependencies": {
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@google/semantic-release-replace-plugin": "^1.1.0",
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/git": "^10.0.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"husky": "^7.0.2",
"is-ci": "^3.0.0",
"mega-linter-runner": "^4.46.0",
"npm-check-updates": "^11.8.5",
"npm-run-all": "^4.1.5",
"prettier": "2.4.1",
"semantic-release": "^18.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}