This repository has been archived by the owner on Oct 18, 2019. It is now read-only.
generated from actions/javascript-action
-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
55 lines (55 loc) · 1.45 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
{
"name": "@eslint/github-action",
"version": "0.1.0",
"description": "Run ESLint on GitHub pull requests",
"bin": "src/bin.js",
"files": [
"src"
],
"scripts": {
"eslint:github-action": "eslint src/ tests/",
"lint": "eslint src/ tests/ scripts/",
"test": "npm run lint && mocha tests/*.test.js",
"update-tag": "node scripts/update-tag.js",
"generate-release": "eslint-generate-release",
"generate-alpharelease": "eslint-generate-prerelease alpha",
"generate-betarelease": "eslint-generate-prerelease beta",
"generate-rcrelease": "eslint-generate-prerelease rc",
"publish-release": "eslint-publish-release && npm run update-tag"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eslint/github-action.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"ESLint",
"GitHub",
"Actions",
"JavaScript"
],
"author": "Nicholas C. Zakas",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/eslint/github-action/issues"
},
"homepage": "https://github.com/eslint/github-action#readme",
"dependencies": {
"@actions/core": "^1.1.1",
"@actions/exec": "^1.0.1",
"@actions/github": "^1.1.0",
"eslint-config-eslint": "^5.0.1",
"eslint-plugin-node": "^10.0.0"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.3.0",
"eslint-release": "^1.2.0",
"mocha": "^6.2.1"
},
"engines": {
"node": ">=10"
}
}