-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "initial-commit",
"version": "0.0.0",
"description": "Starting template for repository",
"keywords": [],
"homepage": "https://atanas.info/projects/initial-commit.html",
"bugs": {
"url": "https://github.com/scriptex/initial-commit/issues",
"email": "[email protected]"
},
"license": "MIT",
"author": "Atanas Atanasov <[email protected]> (https://atanas.info)",
"funding": "https://github.com/sponsors/scriptex",
"main": "dist/index.js",
"style": "dist/index.css",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "github:scriptex/initial-commit"
},
"scripts": {
"test": "echo 'No tests found'",
"release-minor": "release-it minor --ci",
"release-patch": "release-it patch --ci",
"release-major": "release-it major --ci",
"changelog-local": "npx auto-changelog"
},
"dependencies": {},
"devDependencies": {
"release-it": "17.10.0"
},
"peerDependencies": {},
"browserslist": [],
"private": true,
"release-it": {
"hooks": {
"after:release": "yarn changelog-local && git add CHANGELOG.md && git commit -m \"Update CHANGELOG.md with the latest changes\" --no-verify && git push"
},
"use": "pkg.version",
"git": {
"changelog": "git log --pretty=format:\"* %s (%h)\" ${from}...${to}",
"requireCleanWorkingDir": true,
"requireBranch": false,
"requireUpstream": false,
"requireCommits": false,
"addUntrackedFiles": false,
"commit": true,
"commitMessage": "Release ${version}",
"commitArgs": [
"--no-verify"
],
"tag": true,
"tagName": "${version}",
"tagAnnotation": "Release ${version}",
"tagArgs": [],
"push": true,
"pushArgs": [
"--follow-tags"
],
"pushRepo": ""
},
"github": {
"release": false
},
"gitlab": {
"release": false
},
"npm": {
"publish": false
}
}
}