forked from technote-space/auto-cancel-redundant-workflow
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.99 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
{
"name": "@technote-space/auto-cancel-redundant-job",
"version": "1.6.1",
"description": "GitHub Actions to automatically cancel redundant jobs.",
"keywords": [
"github",
"github actions"
],
"homepage": "https://github.com/technote-space/auto-cancel-redundant-job",
"bugs": {
"url": "https://github.com/technote-space/auto-cancel-redundant-job/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/technote-space/auto-cancel-redundant-job.git"
},
"license": "MIT",
"author": {
"name": "Technote",
"email": "[email protected]",
"url": "https://technote.space"
},
"files": [
"lib",
"action.yml"
],
"scripts": {
"build": "tsc",
"cover": "jest --coverage",
"lint": "eslint 'src/**/*.ts' '__tests__/**/*.ts' --cache",
"lint:fix": "eslint --fix 'src/**/*.ts' '__tests__/**/*.ts'",
"release": "yarn release-ga --test",
"test": "yarn lint && yarn cover",
"update": "npx npm-check-updates -u && yarn install && yarn upgrade && yarn audit"
},
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^4.0.0",
"@octokit/plugin-paginate-rest": "^2.4.0",
"@octokit/plugin-rest-endpoint-methods": "^4.2.0",
"@octokit/types": "^5.5.0",
"@technote-space/github-action-helper": "^4.0.3",
"@technote-space/github-action-log-helper": "^0.1.3"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@technote-space/github-action-test-helper": "^0.6.1",
"@technote-space/release-github-actions-cli": "^1.7.1",
"@types/jest": "^26.0.14",
"@types/node": "^14.11.5",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"eslint": "^7.10.0",
"husky": "^4.3.0",
"jest": "^26.5.2",
"jest-circus": "^26.5.2",
"lint-staged": "^10.4.0",
"nock": "^13.0.4",
"ts-jest": "^26.4.1",
"typescript": "^4.0.3"
},
"publishConfig": {
"access": "public"
}
}