-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.69 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.69 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
67
{
"name": "@neovici/github-actions-eslint-annotator",
"version": "0.4.0",
"description": "Create ESLint Checks when running in Github Actions",
"bin": "./index.js",
"main": "index.js",
"scripts": {
"test": "eslint --cache --ext .js ."
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/github",
"@semantic-release/npm",
"@semantic-release/git"
],
"branch": "master"
},
"publishConfig": {
"access": "public"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/Neovici/github-actions-eslint-annotator.git"
},
"keywords": [
"github",
"actions",
"eslint",
"annotations",
"checks"
],
"author": "Neovici",
"license": "ISC",
"bugs": {
"url": "https://github.com/Neovici/github-actions-eslint-annotator/issues"
},
"homepage": "https://github.com/Neovici/github-actions-eslint-annotator#readme",
"dependencies": {
"eslint": ">=5"
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@neovici/eslint-config": "github:neovici/eslint-config#semver:^1.0.0",
"@semantic-release/changelog": "^3.0.4",
"@semantic-release/git": "^7.0.16",
"babel-eslint": "^10.0.2",
"eslint-plugin-html": "^5.0.3",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-mocha": "^5.3.0",
"husky": "^3.0.8",
"semantic-release": "^17.2.3"
}
}