forked from ngageoint/eslint-config-opensphere
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.12 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"dependencies": {
"eslint-config-google": "^0.14.0",
"eslint-plugin-google-camelcase": "^0.0.2",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsdoc": "^43.0.9",
"eslint-plugin-opensphere": "^2.5.0"
},
"description": "ESLint config for opensphere",
"directories": {},
"files": [
"index.js"
],
"keywords": [
"closure",
"google",
"code",
"quality",
"style",
"lint",
"linter",
"jscs",
"jshint",
"jslint",
"eslint",
"validate",
"code style",
"strict",
"check",
"checker",
"verify",
"enforce",
"hint"
],
"license": "Apache-2.0",
"name": "eslint-config-opensphere",
"author": "Kevin Schmidt <[email protected]>",
"maintainers": [
"Kevin Schmidt <[email protected]>",
"William Wall <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/ngageoint/eslint-config-opensphere.git"
},
"peerDependencies": {
"eslint": ">=7.26.0"
},
"readme": "README.md",
"scripts": {
"semantic-release": "semantic-release",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"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]"
}
],
"@semantic-release/github"
]
},
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.0",
"@semantic-release/npm": "^7.0.10",
"@semantic-release/release-notes-generator": "^9.0.1",
"husky": "^7.0.4",
"pinst": "^2.1.6",
"semantic-release": "^17.3.9"
},
"version": "7.0.0"
}