-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.88 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
{
"name": "gridsome-helper-json",
"version": "1.0.3",
"keywords": [
"gridsome",
"vue",
"vetur"
],
"homepage": "https://github.com/gridsome/gridsome-helper-json#readme",
"bugs": {
"url": "https://github.com/gridsome/gridsome-helper-json/issues"
},
"license": "MIT",
"author": "tyankatsu <[email protected]>",
"files": [
"gridsome-attributes.json",
"gridsome-tags.json"
],
"repository": "[email protected]:gridsome/gridsome-helper-json.git",
"scripts": {
"test": "echo 'Skip test'",
"lint-staged": "lint-staged",
"precommit": "lint-staged",
"commit": "git-cz",
"release:major": "changelog -M -u $npm_package_config_changelog && git add CHANGELOG.md && git commit --no-verify -m 'docs(CHANGELOG.md): :bookmark: updated CHANGELOG.md' && npm version major -m 'feat: :tada: updated version' && git push origin && git push origin --tags",
"release:minor": "changelog -m -u $npm_package_config_changelog && git add CHANGELOG.md && git commit --no-verify -m 'docs(CHANGELOG.md): :bookmark: updated CHANGELOG.md' && npm version minor -m 'feat: :tada: updated version' && git push origin && git push origin --tags",
"release:patch": "changelog -p -u $npm_package_config_changelog && git add CHANGELOG.md && git commit --no-verify -m 'docs(CHANGELOG.md): :bookmark: updated CHANGELOG.md' && npm version patch -m 'feat: :tada: updated version' && git push origin && git push origin --tags"
},
"config": {
"changelog": "https://github.com/gridsome/gridsome-helper-json"
},
"devDependencies": {
"commitizen": "^3.0.5",
"cz-conventional-changelog": "^2.1.0",
"generate-changelog": "^1.7.1",
"lint-staged": "^8.1.4",
"prettier": "^1.16.4"
},
"lint-staged": {
"linters": {
"*.{md,json}": [
"prettier --write",
"git add"
]
},
"ignore": [
"node_modules/**/*"
]
}
}