-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.59 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
{
"name": "@invoker-bot/generator-repository-template",
"version": "0.1.0-alpha.1",
"description": "A repository template for common open-source project standardization (README, CONTRIBUTING, GitHub templates).",
"scripts": {
"test": "exit 0",
"commit": "cz",
"prepare": "is-ci || (git config commit.template COMMIT_TEMPLATE.txt && husky install)",
"release": "standard-version --no-verify",
"release:pre": "standard-version --no-verify --prerelease",
"release:patch": "standard-version --no-verify --release-as patch",
"release:minor": "standard-version --no-verify --release-as minor",
"release:major": "standard-version --no-verify --release-as major"
},
"repository": {
"type": "git",
"url": "git+https://github.com/invoker-bot/repository-template.git"
},
"keywords": [
"github-template",
"git-template",
"yeoman-generator"
],
"author": {
"name": "Invoker Bot",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/invoker-bot/repository-template/issues"
},
"homepage": "https://github.com/invoker-bot/repository-template",
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"husky": "^7.0.4",
"is-ci": "^3.0.1",
"standard-version": "^9.3.2",
"yeoman-test": "^6.3.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"yeoman-generator": "^5.6.1"
},
"files": [
"."
]
}