forked from ngageoint/eslint-plugin-opensphere
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.05 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.05 KB
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
{
"name": "eslint-plugin-opensphere",
"version": "2.0.1",
"description": "Custom ESLint rules for OpenSphere",
"main": "index.js",
"license": "Apache-2.0",
"author": "Kevin Schmidt <kschmidt@caci.com>",
"maintainers": [
"Kevin Schmidt <kschmidt@caci.com>",
"William Wall <wwall@caci.com>"
],
"repository": {
"type": "git",
"url": "https://github.com/ngageoint/eslint-plugin-opensphere.git"
},
"scripts": {
"test": "eslint .",
"semantic-release": "semantic-release"
},
"husky": {
"hooks": {
"commit-msg": "validate-commit-msg"
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
},
"validate-commit-msg": {
"helpMessage": "\nPlease fix your commit message (consider using 'npm i -g commitizen'). Well-formatted commit messages allow us to automate our changelog and npm releases.\n\nExamples:\n\"fix(command): Fixed an error when undoing the command stack\"\n\"feat(array): Added utility function for joining arrays\"\n\nIf you have installed commitizen, try running 'git cz'."
}
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"package.json",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
"@semantic-release/github"
]
},
"devDependencies": {
"@semantic-release/changelog": "^3.0.2",
"@semantic-release/commit-analyzer": "^6.1.0",
"@semantic-release/git": "^7.0.8",
"@semantic-release/github": "^5.2.10",
"@semantic-release/npm": "^5.1.4",
"@semantic-release/release-notes-generator": "^7.1.4",
"cz-conventional-changelog": "^1.2.0",
"eslint": "^3.19.0",
"eslint-config-google": "^0.7.1",
"husky": "^1.3.1",
"semantic-release": "^15.13.18",
"validate-commit-msg": "^2.14.0"
}
}