forked from technote-space/auto-cancel-redundant-workflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.38 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
{
"name": "@technote-space/auto-cancel-redundant-workflow",
"version": "1.7.5",
"description": "GitHub Actions to automatically cancel redundant workflow.",
"keywords": [
"github",
"github actions"
],
"homepage": "https://github.com/technote-space/auto-cancel-redundant-workflow",
"bugs": {
"url": "https://github.com/technote-space/auto-cancel-redundant-workflow/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/technote-space/auto-cancel-redundant-workflow.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": "npm_config_yes=true npx npm-check-updates -u --timeout 100000 && yarn install && yarn upgrade && yarn audit",
"postinstall": "[ -n \"$CI\" ] || [ ! -f node_modules/.bin/husky ] || husky install",
"prepublishOnly": "[ -n \"$CI\" ] || [ ! -f node_modules/.bin/pinst ] || pinst --disable",
"postpublish": "[ -n \"$CI\" ] || [ ! -f node_modules/.bin/pinst ] || pinst --enable"
},
"dependencies": {
"@actions/core": "^1.2.7",
"@actions/github": "^5.0.0",
"@octokit/openapi-types": "^7.0.0",
"@octokit/plugin-paginate-rest": "^2.13.3",
"@octokit/plugin-rest-endpoint-methods": "^5.1.1",
"@octokit/types": "^6.14.2",
"@technote-space/github-action-helper": "^5.2.9",
"@technote-space/github-action-log-helper": "^0.1.25"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@technote-space/github-action-test-helper": "^0.7.12",
"@technote-space/release-github-actions-cli": "^1.8.5",
"@types/jest": "^26.0.23",
"@types/node": "^15.3.0",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"eslint": "^7.26.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"lint-staged": "^11.0.0",
"nock": "^13.0.11",
"pinst": "^2.1.6",
"ts-jest": "^26.5.6",
"typescript": "^4.2.4"
},
"publishConfig": {
"access": "public"
}
}